Target.java revision fb98811412f1a61efdc30b38091bf4708148a806
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster//
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster// Any modifications to this file will be lost upon recompilation of the source schema.
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster// Generated on: 2012.06.11 at 10:26:55 AM PDT
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster//
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster
fb98811412f1a61efdc30b38091bf4708148a806Allan Fosterpackage com.sun.identity.entitlement.xacml3.core;
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster
fb98811412f1a61efdc30b38091bf4708148a806Allan Fosterimport java.util.ArrayList;
fb98811412f1a61efdc30b38091bf4708148a806Allan Fosterimport java.util.List;
fb98811412f1a61efdc30b38091bf4708148a806Allan Fosterimport javax.xml.bind.annotation.XmlAccessType;
fb98811412f1a61efdc30b38091bf4708148a806Allan Fosterimport javax.xml.bind.annotation.XmlAccessorType;
fb98811412f1a61efdc30b38091bf4708148a806Allan Fosterimport javax.xml.bind.annotation.XmlElement;
fb98811412f1a61efdc30b38091bf4708148a806Allan Fosterimport javax.xml.bind.annotation.XmlType;
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster/**
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * <p>Java class for TargetType complex type.
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster *
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * <p>The following schema fragment specifies the expected content contained within this class.
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster *
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * <pre>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * &lt;complexType name="TargetType">
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * &lt;complexContent>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * &lt;sequence maxOccurs="unbounded" minOccurs="0">
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:cd-1}AnyOf"/>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * &lt;/sequence>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * &lt;/restriction>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * &lt;/complexContent>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * &lt;/complexType>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * </pre>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster *
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster *
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster */
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster@XmlAccessorType(XmlAccessType.FIELD)
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster@XmlType(name = "TargetType", propOrder = {
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster "anyOf"
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster})
fb98811412f1a61efdc30b38091bf4708148a806Allan Fosterpublic class Target {
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster @XmlElement(name = "AnyOf")
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster protected List<AnyOf> anyOf;
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster /**
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * Gets the value of the anyOf property.
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster *
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * <p>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * This accessor method returns a reference to the live list,
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * not a snapshot. Therefore any modification you make to the
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * returned list will be present inside the JAXB object.
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * This is why there is not a <CODE>set</CODE> method for the anyOf property.
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster *
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * <p>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * For example, to add a new item, do as follows:
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * <pre>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * getAnyOf().add(newItem);
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * </pre>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster *
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster *
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * <p>
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * Objects of the following type(s) are allowed in the list
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster * {@link AnyOf }
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster *
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster *
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster */
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster public List<AnyOf> getAnyOf() {
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster if (anyOf == null) {
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster anyOf = new ArrayList<AnyOf>();
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster }
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster return this.anyOf;
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster }
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster
fb98811412f1a61efdc30b38091bf4708148a806Allan Foster}