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

org.projecthusky.xua.saml2.AuthnStatementBuilder 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;

import org.openehealth.ipf.commons.ihe.xacml20.stub.saml20.assertion.AuthnStatementType;

/**
 * 
 * 
Interface describing the methods of the AuthnStatementBuilder.
*
Interface welches die Methoden des AuthnStatementBuilder beschreibt.
*
*
* */ public interface AuthnStatementBuilder extends SimpleBuilder { /** * * *
Method to set the AuthnContextClassRef as Calendar.
*
Methode um die AuthnContextClassRef as Calendar.
*
*
* * @param aAuthnContextClassRef *
the AuthnContextClassRef string to be set.
*
der AuthnContextClassRef String der gesetzt werden soll.
*
*
* @return *
the actual instance of this builder
*
die aktuelle Instanz des Builders
*
*
* */ AuthnStatementBuilder authnContextClassRef(String aAuthnContextClassRef); /** * *
Method to set the AuthnInstant as Calendar.
*
Methode um die AuthnInstant as Calendar.
*
*
* * @param aCalendar *
The Calendar value to be set as AuthnInstant.
*
Der Calendar Wert der als AuthnInstant gesetzt werden soll.
*
*
* * @return *
the actual instance of this builder
*
die aktuelle Instanz des Builders
*
*
* */ AuthnStatementBuilder authnInstant(Calendar aCalendar); /** * * *
Method to set the SessionIndex as Calendar.
*
Methode um die SessionIndex as Calendar.
*
*
* * @param aSessionIndex *
the sessionIndex string to be set.
*
der SessionIndex String der gesetzt werden soll.
*
*
* @return *
the actual instance of this builder
*
die aktuelle Instanz des Builders
*
*
* */ AuthnStatementBuilder sessionIndex(String aSessionIndex); /** * * *
Method to set the SessionNotOnOrAfter as Calendar.
*
Methode um die SessionNotOnOrAfter als Calendar zu erhalten.
*
*
* * @param aSessionNotOnOrAfter *
the SessionNotOnOrAfter as Calendar to be set
*
der SessionNotOnOrAfter als Calendar der gesetzt werden soll
*
*
* * @return *
the actual instance of this builder
*
die aktuelle Instanz des Builders
*
*
* */ AuthnStatementBuilder sessionNotOnOrAfter(Calendar aSessionNotOnOrAfter); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy