/* * Copyright 2016 Red Hat, Inc. and/or its affiliates * and other contributors as indicated by the @author tags. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.keycloak.dom.saml.v2.assertion; import javax.xml.datatype.XMLGregorianCalendar; /** * <p> * Java class for AuthnStatementType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <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> * </pre> */ public class AuthnStatementType extends StatementAbstractType { protected SubjectLocalityType subjectLocality; protected AuthnContextType authnContext; protected XMLGregorianCalendar authnInstant; protected XMLGregorianCalendar sessionNotOnOrAfter; protected String sessionIndex; public AuthnStatementType(XMLGregorianCalendar instant) { this.authnInstant = instant; } /** * 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; } /** * 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; } }