// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.05.06 at 06:41:10 PM CEST // package de.groothues.mysaml.assertion; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for AuthnContextType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AuthnContextType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice> * <sequence> * <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}AuthnContextClassRef"/> * <choice minOccurs="0"> * <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}AuthnContextDecl"/> * <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}AuthnContextDeclRef"/> * </choice> * </sequence> * <choice> * <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}AuthnContextDecl"/> * <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}AuthnContextDeclRef"/> * </choice> * </choice> * <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}AuthenticatingAuthority" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AuthnContextType", propOrder = { "authnContextClassRef", "authnContextDecl1", "authnContextDeclRef1", "authnContextDecl", "authnContextDeclRef", "authenticatingAuthority" }) public class AuthnContextType { @XmlElement(name = "AuthnContextClassRef") @XmlSchemaType(name = "anyURI") protected String authnContextClassRef; @XmlElement(name = "AuthnContextDecl") protected Object authnContextDecl1; @XmlElement(name = "AuthnContextDeclRef") @XmlSchemaType(name = "anyURI") protected String authnContextDeclRef1; @XmlElement(name = "AuthnContextDecl") protected Object authnContextDecl; @XmlElement(name = "AuthnContextDeclRef") @XmlSchemaType(name = "anyURI") protected String authnContextDeclRef; @XmlElement(name = "AuthenticatingAuthority") @XmlSchemaType(name = "anyURI") protected List<String> authenticatingAuthority; /** * Gets the value of the authnContextClassRef property. * * @return * possible object is * {@link String } * */ public String getAuthnContextClassRef() { return authnContextClassRef; } /** * Sets the value of the authnContextClassRef property. * * @param value * allowed object is * {@link String } * */ public void setAuthnContextClassRef(String value) { this.authnContextClassRef = value; } /** * Gets the value of the authnContextDecl1 property. * * @return * possible object is * {@link Object } * */ public Object getAuthnContextDecl1() { return authnContextDecl1; } /** * Sets the value of the authnContextDecl1 property. * * @param value * allowed object is * {@link Object } * */ public void setAuthnContextDecl1(Object value) { this.authnContextDecl1 = value; } /** * Gets the value of the authnContextDeclRef1 property. * * @return * possible object is * {@link String } * */ public String getAuthnContextDeclRef1() { return authnContextDeclRef1; } /** * Sets the value of the authnContextDeclRef1 property. * * @param value * allowed object is * {@link String } * */ public void setAuthnContextDeclRef1(String value) { this.authnContextDeclRef1 = value; } /** * Gets the value of the authnContextDecl property. * * @return * possible object is * {@link Object } * */ public Object getAuthnContextDecl() { return authnContextDecl; } /** * Sets the value of the authnContextDecl property. * * @param value * allowed object is * {@link Object } * */ public void setAuthnContextDecl(Object value) { this.authnContextDecl = value; } /** * Gets the value of the authnContextDeclRef property. * * @return * possible object is * {@link String } * */ public String getAuthnContextDeclRef() { return authnContextDeclRef; } /** * Sets the value of the authnContextDeclRef property. * * @param value * allowed object is * {@link String } * */ public void setAuthnContextDeclRef(String value) { this.authnContextDeclRef = value; } /** * Gets the value of the authenticatingAuthority 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 authenticatingAuthority property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAuthenticatingAuthority().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getAuthenticatingAuthority() { if (authenticatingAuthority == null) { authenticatingAuthority = new ArrayList<String>(); } return this.authenticatingAuthority; } }