package com.ECS.client.jax; 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="ListmaniaList" maxOccurs="unbounded"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ListId" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="ListName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "listmaniaList" }) @XmlRootElement(name = "ListmaniaLists") public class ListmaniaLists { @XmlElement(name = "ListmaniaList", required = true) protected List<ListmaniaLists.ListmaniaList> listmaniaList; /** * Gets the value of the listmaniaList 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 listmaniaList property. * * <p> * For example, to add a new item, do as follows: * <pre> * getListmaniaList().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ListmaniaLists.ListmaniaList } * * */ public List<ListmaniaLists.ListmaniaList> getListmaniaList() { if (listmaniaList == null) { listmaniaList = new ArrayList<ListmaniaLists.ListmaniaList>(); } return this.listmaniaList; } /** * <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="ListId" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="ListName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "listId", "listName" }) public static class ListmaniaList { @XmlElement(name = "ListId", required = true) protected String listId; @XmlElement(name = "ListName") protected String listName; /** * Gets the value of the listId property. * * @return * possible object is * {@link String } * */ public String getListId() { return listId; } /** * Sets the value of the listId property. * * @param value * allowed object is * {@link String } * */ public void setListId(String value) { this.listId = value; } /** * Gets the value of the listName property. * * @return * possible object is * {@link String } * */ public String getListName() { return listName; } /** * Sets the value of the listName property. * * @param value * allowed object is * {@link String } * */ public void setListName(String value) { this.listName = value; } } }