fish.focus.schema.movementrules.module.v1.GetTicketsAndRulesByMovementsResponse Maven / Gradle / Ivy
Show all versions of movement-rules-model Show documentation
package fish.focus.schema.movementrules.module.v1;
import java.io.Serializable;
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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import fish.focus.schema.movementrules.ticketrule.v1.TicketAndRuleType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ticketsAndRules" type="{urn:ticketrule.movementrules.schema.focus.fish:v1}TicketAndRuleType" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"ticketsAndRules"
})
@XmlRootElement(name = "GetTicketsAndRulesByMovementsResponse")
public class GetTicketsAndRulesByMovementsResponse
implements Serializable
{
private final static long serialVersionUID = 1L;
protected List ticketsAndRules;
/**
* Gets the value of the ticketsAndRules property.
*
*
* 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 set
method for the ticketsAndRules property.
*
*
* For example, to add a new item, do as follows:
*
* getTicketsAndRules().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TicketAndRuleType }
*
*
*/
public List getTicketsAndRules() {
if (ticketsAndRules == null) {
ticketsAndRules = new ArrayList();
}
return this.ticketsAndRules;
}
}