package at.gv.util.xsd.saml.v2_0.assertion; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlMixed; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

Java-Klasse für SubjectConfirmationDataType complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="SubjectConfirmationDataType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="NotBefore" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="NotOnOrAfter" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="Recipient" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="InResponseTo" type="{http://www.w3.org/2001/XMLSchema}NCName" />
 *       <attribute name="Address" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SubjectConfirmationDataType", propOrder = { "content" }) @XmlSeeAlso({ KeyInfoConfirmationDataType.class }) public class SubjectConfirmationDataType { @XmlMixed @XmlAnyElement(lax = true) protected List content; @XmlAttribute(name = "NotBefore") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar notBefore; @XmlAttribute(name = "NotOnOrAfter") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar notOnOrAfter; @XmlAttribute(name = "Recipient") @XmlSchemaType(name = "anyURI") protected String recipient; @XmlAttribute(name = "InResponseTo") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String inResponseTo; @XmlAttribute(name = "Address") protected String address; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the content 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 content property. * *

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

     *    getContent().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * {@link Element } * {@link Object } * * */ public List getContent() { if (content == null) { content = new ArrayList(); } return this.content; } /** * Ruft den Wert der notBefore-Eigenschaft ab. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getNotBefore() { return notBefore; } /** * Legt den Wert der notBefore-Eigenschaft fest. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setNotBefore(XMLGregorianCalendar value) { this.notBefore = value; } /** * Ruft den Wert der notOnOrAfter-Eigenschaft ab. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getNotOnOrAfter() { return notOnOrAfter; } /** * Legt den Wert der notOnOrAfter-Eigenschaft fest. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setNotOnOrAfter(XMLGregorianCalendar value) { this.notOnOrAfter = value; } /** * Ruft den Wert der recipient-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getRecipient() { return recipient; } /** * Legt den Wert der recipient-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setRecipient(String value) { this.recipient = value; } /** * Ruft den Wert der inResponseTo-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getInResponseTo() { return inResponseTo; } /** * Legt den Wert der inResponseTo-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setInResponseTo(String value) { this.inResponseTo = value; } /** * Ruft den Wert der address-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getAddress() { return address; } /** * Legt den Wert der address-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setAddress(String value) { this.address = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } }