package com.thesecretserver.service; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for SecretTemplate complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SecretTemplate"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Id" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Fields" type="{urn:thesecretserver.com}ArrayOfSecretField" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SecretTemplate", propOrder = { "id", "name", "fields" }) public class SecretTemplate { @XmlElement(name = "Id") protected int id; @XmlElement(name = "Name") protected String name; @XmlElement(name = "Fields") protected ArrayOfSecretField fields; /** * Gets the value of the id property. * */ public int getId() { return id; } /** * Sets the value of the id property. * */ public void setId(int value) { this.id = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the fields property. * * @return * possible object is * {@link ArrayOfSecretField } * */ public ArrayOfSecretField getFields() { return fields; } /** * Sets the value of the fields property. * * @param value * allowed object is * {@link ArrayOfSecretField } * */ public void setFields(ArrayOfSecretField value) { this.fields = value; } }