// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.05.23 at 07:35:02 AM FET // package gen.taas; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}long"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="type" type="{}CollectionType"/> * <element name="languages"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{}language" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="domains"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{}domain" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "id", "name", "description", "type", "languages", "domains" }) @XmlRootElement(name = "collection") public class TaasCollection { protected long id; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String description; @XmlElement(required = true) protected TaasCollectionType type; @XmlElement(required = true) protected TaasCollection.Languages languages; @XmlElement(required = true) protected TaasCollection.Domains domains; /** * Gets the value of the id property. * */ public long getId() { return id; } /** * Sets the value of the id property. * */ public void setId(long 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 description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link TaasCollectionType } * */ public TaasCollectionType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link TaasCollectionType } * */ public void setType(TaasCollectionType value) { this.type = value; } /** * Gets the value of the languages property. * * @return * possible object is * {@link TaasCollection.Languages } * */ public TaasCollection.Languages getLanguages() { return languages; } /** * Sets the value of the languages property. * * @param value * allowed object is * {@link TaasCollection.Languages } * */ public void setLanguages(TaasCollection.Languages value) { this.languages = value; } /** * Gets the value of the domains property. * * @return * possible object is * {@link TaasCollection.Domains } * */ public TaasCollection.Domains getDomains() { return domains; } /** * Sets the value of the domains property. * * @param value * allowed object is * {@link TaasCollection.Domains } * */ public void setDomains(TaasCollection.Domains value) { this.domains = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{}domain" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "domain" }) public static class Domains { protected List<TaasDomain> domain; /** * Gets the value of the domain property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the domain property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDomain().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TaasDomain } * * */ public List<TaasDomain> getDomain() { if (domain == null) { domain = new ArrayList<TaasDomain>(); } return this.domain; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{}language" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "language" }) public static class Languages { protected List<TaasLanguage> language; /** * Gets the value of the language property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the language property. * * <p> * For example, to add a new item, do as follows: * <pre> * getLanguage().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TaasLanguage } * * */ public List<TaasLanguage> getLanguage() { if (language == null) { language = new ArrayList<TaasLanguage>(); } return this.language; } } }