org.projecthusky.xua.saml2.AuthnStatement Maven / Gradle / Ivy
/*
* This code is made available under the terms of the Eclipse Public License v1.0
* in the github project https://github.com/project-husky/husky there you also
* find a list of the contributors and the license information.
*
* This project has been developed further and modified by the joined working group Husky
* on the basis of the eHealth Connector opensource project from June 28, 2021,
* whereas medshare GmbH is the initial and main contributor/author of the eHealth Connector.
*
*/
package org.projecthusky.xua.saml2;
import java.util.Calendar;
/**
*
* Interface describing the methods of AuthnStatement.
* Interface welches die Methoden von AuthnStatement beschreibt.
*
*
*
*/
public interface AuthnStatement {
/**
*
* Method to get the AuthnContextClassRef.
* Methode um die AuthnContextClassRef zu erhalten.
*
*
* @return
* the ClassRef as string.
* der ClassRef als String.
*
*
*
*/
String getAuthnContextClassRef();
/**
*
*
* method to get the AuthInstant.
* Methode um die AuthInstant zu erhalten.
*
*
* @return
* the Calendar instance representing the value of AuthnInstant.
* die Calendar Instanz die den AuthInstance Wert repräsentiert.
*
*
*
*/
Calendar getAuthnInstant();
/**
*
* Method to get the Date Index of the Session.
* Methode um das Datum Index der Session zu erhalten.
*
*
* @return
* the Index as string.
* der Index als String.
*
*
*
*/
String getSessionIndex();
/**
*
*
* Method to get the Date NotOnOrAfter of the Session.
* Methode um das Datum NotOnOrAfter der Session zu erhalten.
*
*
* @return
* the Calendar instance representing the value of NotOnOrAfter.
* die Calendar Instanz die den NotOnOrAfter Wert repräsentiert.
*
*
*
*/
Calendar getSessionNotOnOrAfter();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy