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="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="CreationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ValidOperations" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Operation" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="Elements" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Element" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "name", "creationDate", "validOperations", "elements" }) @XmlRootElement(name = "ResponseGroupInformation") public class ResponseGroupInformation { @XmlElement(name = "Name") protected String name; @XmlElement(name = "CreationDate") protected String creationDate; @XmlElement(name = "ValidOperations") protected ResponseGroupInformation.ValidOperations validOperations; @XmlElement(name = "Elements") protected ResponseGroupInformation.Elements elements; /** * 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 creationDate property. * * @return * possible object is * {@link String } * */ public String getCreationDate() { return creationDate; } /** * Sets the value of the creationDate property. * * @param value * allowed object is * {@link String } * */ public void setCreationDate(String value) { this.creationDate = value; } /** * Gets the value of the validOperations property. * * @return * possible object is * {@link ResponseGroupInformation.ValidOperations } * */ public ResponseGroupInformation.ValidOperations getValidOperations() { return validOperations; } /** * Sets the value of the validOperations property. * * @param value * allowed object is * {@link ResponseGroupInformation.ValidOperations } * */ public void setValidOperations(ResponseGroupInformation.ValidOperations value) { this.validOperations = value; } /** * Gets the value of the elements property. * * @return * possible object is * {@link ResponseGroupInformation.Elements } * */ public ResponseGroupInformation.Elements getElements() { return elements; } /** * Sets the value of the elements property. * * @param value * allowed object is * {@link ResponseGroupInformation.Elements } * */ public void setElements(ResponseGroupInformation.Elements value) { this.elements = 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 name="Element" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "element" }) public static class Elements { @XmlElement(name = "Element", required = true) protected List<String> element; /** * Gets the value of the element 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 element property. * * <p> * For example, to add a new item, do as follows: * <pre> * getElement().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getElement() { if (element == null) { element = new ArrayList<String>(); } return this.element; } } /** * <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="Operation" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "operation" }) public static class ValidOperations { @XmlElement(name = "Operation", required = true) protected List<String> operation; /** * Gets the value of the operation 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 operation property. * * <p> * For example, to add a new item, do as follows: * <pre> * getOperation().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getOperation() { if (operation == null) { operation = new ArrayList<String>(); } return this.operation; } } }