package org.picketlink.identity.federation.saml.v2.ac.classes; /** * <p> * Java class for AuthnContextDeclarationBaseType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AuthnContextDeclarationBaseType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}Identification" minOccurs="0"/> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}TechnicalProtection" minOccurs="0"/> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}OperationalProtection" minOccurs="0"/> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}AuthnMethod" minOccurs="0"/> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}GoverningAgreements" minOccurs="0"/> * <element ref="{urn:oasis:names:tc:SAML:2.0:ac:classes:AuthenticatedTelephony}Extension" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ public class OriginalAuthnContextDeclarationBaseType extends ExtensionListType { protected IdentificationType identification; protected TechnicalProtectionBaseType technicalProtection; protected OperationalProtectionType operationalProtection; protected AuthnMethodBaseType authnMethod; protected GoverningAgreementsType governingAgreements; protected String id; /** * Gets the value of the identification property. * * @return possible object is {@link IdentificationType } * */ public IdentificationType getIdentification() { return identification; } /** * Sets the value of the identification property. * * @param value allowed object is {@link IdentificationType } * */ public void setIdentification(IdentificationType value) { this.identification = value; } /** * Gets the value of the technicalProtection property. * * @return possible object is {@link TechnicalProtectionBaseType } * */ public TechnicalProtectionBaseType getTechnicalProtection() { return technicalProtection; } /** * Sets the value of the technicalProtection property. * * @param value allowed object is {@link TechnicalProtectionBaseType } * */ public void setTechnicalProtection(TechnicalProtectionBaseType value) { this.technicalProtection = value; } /** * Gets the value of the operationalProtection property. * * @return possible object is {@link OperationalProtectionType } * */ public OperationalProtectionType getOperationalProtection() { return operationalProtection; } /** * Sets the value of the operationalProtection property. * * @param value allowed object is {@link OperationalProtectionType } * */ public void setOperationalProtection(OperationalProtectionType value) { this.operationalProtection = value; } /** * Gets the value of the authnMethod property. * * @return possible object is {@link AuthnMethodBaseType } * */ public AuthnMethodBaseType getAuthnMethod() { return authnMethod; } /** * Sets the value of the authnMethod property. * * @param value allowed object is {@link AuthnMethodBaseType } * */ public void setAuthnMethod(AuthnMethodBaseType value) { this.authnMethod = value; } /** * Gets the value of the governingAgreements property. * * @return possible object is {@link GoverningAgreementsType } * */ public GoverningAgreementsType getGoverningAgreements() { return governingAgreements; } /** * Sets the value of the governingAgreements property. * * @param value allowed object is {@link GoverningAgreementsType } * */ public void setGoverningAgreements(GoverningAgreementsType value) { this.governingAgreements = value; } /** * Gets the value of the id property. * * @return possible object is {@link String } * */ public String getID() { return id; } /** * Sets the value of the id property. * * @param value allowed object is {@link String } * */ public void setID(String value) { this.id = value; } }