All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.wss.saml.internal.saml20.jaxb20.AuthnStatementType Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-3509 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2006.09.12 at 08:57:41 PM IST 
//


package com.sun.xml.wss.saml.internal.saml20.jaxb20;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for AuthnStatementType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="AuthnStatementType">
 *   <complexContent>
 *     <extension base="{urn:oasis:names:tc:SAML:2.0:assertion}StatementAbstractType">
 *       <sequence>
 *         <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}SubjectLocality" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}AuthnContext"/>
 *       </sequence>
 *       <attribute name="AuthnInstant" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="SessionIndex" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="SessionNotOnOrAfter" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlRootElement(name="AuthnStatement") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AuthnStatementType", propOrder = { "subjectLocality", "authnContext" }) public class AuthnStatementType extends StatementAbstractType { @XmlElement(name = "SubjectLocality") protected SubjectLocalityType subjectLocality; @XmlElement(name = "AuthnContext", required = true) protected AuthnContextType authnContext; @XmlAttribute(name = "AuthnInstant", required = true) protected XMLGregorianCalendar authnInstant; @XmlAttribute(name = "SessionIndex") protected String sessionIndex; @XmlAttribute(name = "SessionNotOnOrAfter") protected XMLGregorianCalendar sessionNotOnOrAfter; /** * Gets the value of the subjectLocality property. * * @return * possible object is * {@link SubjectLocalityType } * */ public SubjectLocalityType getSubjectLocality() { return subjectLocality; } /** * Sets the value of the subjectLocality property. * * @param value * allowed object is * {@link SubjectLocalityType } * */ public void setSubjectLocality(SubjectLocalityType value) { this.subjectLocality = value; } /** * Gets the value of the authnContext property. * * @return * possible object is * {@link AuthnContextType } * */ public AuthnContextType getAuthnContext() { return authnContext; } /** * Sets the value of the authnContext property. * * @param value * allowed object is * {@link AuthnContextType } * */ public void setAuthnContext(AuthnContextType value) { this.authnContext = value; } /** * Gets the value of the authnInstant property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getAuthnInstant() { return authnInstant; } /** * Sets the value of the authnInstant property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setAuthnInstant(XMLGregorianCalendar value) { this.authnInstant = value; } /** * Gets the value of the sessionIndex property. * * @return * possible object is * {@link String } * */ public String getSessionIndex() { return sessionIndex; } /** * Sets the value of the sessionIndex property. * * @param value * allowed object is * {@link String } * */ public void setSessionIndex(String value) { this.sessionIndex = value; } /** * Gets the value of the sessionNotOnOrAfter property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getSessionNotOnOrAfter() { return sessionNotOnOrAfter; } /** * Sets the value of the sessionNotOnOrAfter property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setSessionNotOnOrAfter(XMLGregorianCalendar value) { this.sessionNotOnOrAfter = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy