// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2006.12.17 at 10:01:56 PM CET // package ietf.params.xml.ns.common_policy; 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.XmlAnyElement; 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">
 *       <sequence>
 *         <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/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "conditionsType", propOrder = { "identity", "sphere", "validity", "any" }) public class ConditionsType { protected IdentityType identity; protected SphereType sphere; protected ValidityType validity; @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the identity property. * * @return * possible object is * {@link IdentityType } * */ public IdentityType getIdentity() { return identity; } /** * Sets the value of the identity property. * * @param value * allowed object is * {@link IdentityType } * */ public void setIdentity(IdentityType value) { this.identity = value; } /** * Gets the value of the sphere property. * * @return * possible object is * {@link SphereType } * */ public SphereType getSphere() { return sphere; } /** * Sets the value of the sphere property. * * @param value * allowed object is * {@link SphereType } * */ public void setSphere(SphereType value) { this.sphere = value; } /** * Gets the value of the validity property. * * @return * possible object is * {@link ValidityType } * */ public ValidityType getValidity() { return validity; } /** * Sets the value of the validity property. * * @param value * allowed object is * {@link ValidityType } * */ public void setValidity(ValidityType value) { this.validity = value; } /** * Gets the value of the any 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 any property. * *

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

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } }