org.projecthusky.xua.saml2.SubjectConfirmationBuilder 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.SubjectConfirmationType;
/**
*
* Interface describing the methods of the SubjectConfirmation.
* Interface welches die Methoden des SubjectConfirmation beschreibt.
*
*
*
*/
public interface SubjectConfirmationBuilder extends SimpleBuilder {
/**
*
* Method to set the Address of the SubjectConfirmation to be build.
* Methode um ein Address dem SubjectConfirmation hinzuzufügen.
*
*
*
* @param aAddress
* the Address to be set
* die Addresse die gesetzt werden soll
*
*
* @return
* the actual instance of this builder
* die aktuelle Instanz des Builders
*
*
*
*/
SubjectConfirmationBuilder address(String aAddress);
/**
*
* Method to set the InResponseTo of the SubjectConfirmation to be build.
* Methode um ein InResponseTo dem SubjectConfirmation hinzuzufügen.
*
*
*
* @param aInResponseTo
* the InResponseTo to be set
* die InResponseTo die gesetzt werden soll
*
*
* @return
* the actual instance of this builder
* die aktuelle Instanz des Builders
*
*
*
*/
SubjectConfirmationBuilder inResponseTo(String aInResponseTo);
/**
*
* Method to set the Method of the SubjectConfirmation to be build.
* Methode um ein Method dem SubjectConfirmation hinzuzufügen.
*
*
*
* @param aMethod
* the Method to be set
* die Method die gesetzt werden soll
*
*
* @return
* the actual instance of this builder
* die aktuelle Instanz des Builders
*
*
*
*/
SubjectConfirmationBuilder method(String aMethod);
/**
*
* Method to set the NotBefore of the SubjectConfirmation to be build.
* Methode um ein NotBefore dem SubjectConfirmation hinzuzufügen.
*
*
*
* @param aNotBefore
* the NotBefore to be set
* die NotBefore die gesetzt werden soll
*
*
* @return
* the actual instance of this builder
* die aktuelle Instanz des Builders
*
*
*
*/
SubjectConfirmationBuilder notBefore(Calendar aNotBefore);
/**
*
* Method to set the NotOnOrAfter of the SubjectConfirmation to be build.
* Methode um ein NotOnOrAfter dem SubjectConfirmation hinzuzufügen.
*
*
*
* @param aNotOnOrAfter
* the NotOnOrAfter to be set
* die NotOnOrAfter die gesetzt werden soll
*
*
* @return
* the actual instance of this builder
* die aktuelle Instanz des Builders
*
*
*
*/
SubjectConfirmationBuilder notOnOrAfter(Calendar aNotOnOrAfter);
/**
*
* Method to set the Recipient of the SubjectConfirmation to be build.
* Methode um ein Recipient dem SubjectConfirmation hinzuzufügen.
*
*
*
* @param aRecipient
* the Recipient to be set
* die Recipient die gesetzt werden soll
*
*
* @return
* the actual instance of this builder
* die aktuelle Instanz des Builders
*
*
*
*/
SubjectConfirmationBuilder recipient(String aRecipient);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy