Package com.sun.xml.wss.saml
Interface AuthnStatement
-
- All Known Implementing Classes:
AuthnStatement
public interface AuthnStatementTheAuthenticationStatementelement supplies a statement by the issuer that its subject was authenticated by a particular means at a particular time. TheAuthenticationStatementelement is of typeAuthenticationStatementType, which extends theSubjectStatementAbstractTypewith the additional element and attributes.The following schema fragment specifies the expected content contained within SAML AuthenticationStatement element.
<complexType name="AuthenticationStatementType"> <complexContent> <extension base="{urn:oasis:names:tc:SAML:1.0:assertion}SubjectStatementAbstractType"> <sequence> <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}SubjectLocality" minOccurs="0"/> <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}AuthorityBinding" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="AuthenticationInstant" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> <attribute name="AuthenticationMethod" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> </extension> </complexContent> </complexType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAuthenticatingAuthority()Gets the value of the AuthnContext's AuthenticatingAuthority property.StringgetAuthnContextClassRef()Gets the value of the AuthnContext's AuthnContextClassRef property.DategetAuthnInstantDate()Gets the value of the authnInstant property.StringgetSessionIndex()Gets the value of the sessionIndex property.DategetSessionNotOnOrAfterDate()Gets the value of the sessionNotOnOrAfter property.StringgetSubjectLocalityAddress()Gets the value of the SubjectLocality address property.StringgetSubjectLocalityDNSName()Gets the value of the SubjectLocality dnsName property.
-
-
-
Method Detail
-
getAuthnInstantDate
Date getAuthnInstantDate()
Gets the value of the authnInstant property.- Returns:
- object is
Date
-
getSessionIndex
String getSessionIndex()
Gets the value of the sessionIndex property.- Returns:
- object is
String
-
getSessionNotOnOrAfterDate
Date getSessionNotOnOrAfterDate()
Gets the value of the sessionNotOnOrAfter property.- Returns:
- object is
Date
-
getSubjectLocalityAddress
String getSubjectLocalityAddress()
Gets the value of the SubjectLocality address property.- Returns:
- object is
String
-
getSubjectLocalityDNSName
String getSubjectLocalityDNSName()
Gets the value of the SubjectLocality dnsName property.- Returns:
- object is
String
-
getAuthnContextClassRef
String getAuthnContextClassRef()
Gets the value of the AuthnContext's AuthnContextClassRef property.- Returns:
- object is
String
-
-