// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2008.10.09 at 09:56:04 AM CEST // package ietf.params.xml.ns.common.policy; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** *

Java class for conditionsType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="conditionsType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice maxOccurs="unbounded">
 *         <element name="identity" type="{urn:ietf:params:xml:ns:common-policy}identityType" minOccurs="0"/>
 *         <element name="sphere" type="{urn:ietf:params:xml:ns:common-policy}sphereType" minOccurs="0"/>
 *         <element name="validity" type="{urn:ietf:params:xml:ns:common-policy}validityType" minOccurs="0"/>
 *         <any/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "conditionsType", propOrder = { "identityOrSphereOrValidity" }) public class ConditionsType { @XmlElementRefs({ @XmlElementRef(name = "validity", namespace = "urn:ietf:params:xml:ns:common-policy", type = JAXBElement.class), @XmlElementRef(name = "identity", namespace = "urn:ietf:params:xml:ns:common-policy", type = JAXBElement.class), @XmlElementRef(name = "sphere", namespace = "urn:ietf:params:xml:ns:common-policy", type = JAXBElement.class) }) @XmlAnyElement(lax = true) protected List identityOrSphereOrValidity; /** * Gets the value of the identityOrSphereOrValidity 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 identityOrSphereOrValidity property. * *

* For example, to add a new item, do as follows: *

     *    getIdentityOrSphereOrValidity().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link ValidityType }{@code >} * {@link JAXBElement }{@code <}{@link IdentityType }{@code >} * {@link JAXBElement }{@code <}{@link SphereType }{@code >} * {@link Element } * {@link Object } * * */ public List getIdentityOrSphereOrValidity() { if (identityOrSphereOrValidity == null) { identityOrSphereOrValidity = new ArrayList(); } return this.identityOrSphereOrValidity; } public boolean isSetIdentityOrSphereOrValidity() { return ((this.identityOrSphereOrValidity!= null)&&(!this.identityOrSphereOrValidity.isEmpty())); } public void unsetIdentityOrSphereOrValidity() { this.identityOrSphereOrValidity = null; } }