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

org.projecthusky.xua.saml2.BaseBuilder Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version
/*
 * 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 the BaseBuilder.
*
Interface welches die Methoden des BaseBuilders beschreibt.
*
*
* * */ public interface BaseBuilder { /** * * *
Builds the id on the T.
*
Bildet die ID im T.
*
*
* * * @param aId *
the id string to be set
*
die ID die gesetzt werden soll
*
*
* @return *
the actual instance of this builder
*
die aktuelle Instanz des Builders
*
*
* */ T id(String aId); /** * * *
Builds the issueInstant on the T.
*
Bildet den issueInstant im T.
*
*
* * @param aIssueInstant *
the issueInstant to be set
*
der issueInstant der gesetzt werden soll
*
*
* @return *
the actual instance of this builder
*
die aktuelle Instanz des Builders
*
*
* */ T issueInstant(Calendar aIssueInstant); /** * * *
Builds the Issuer element on the T.
*
Buildet das Issuer element im T.
*
*
* * @param aIssuer *
the issuer to be set
*
der Issuer der gesetzt werden soll
*
*
* @return *
the actual instance of this builder
*
die aktuelle Instanz des Builders
*
*
* */ T issuer(String aIssuer); /** * *
Builds the Version on the T.
*
Buildet die Version im T.
*
*
* * @param aVersion *
the issuer to be set
*
der Issuer der gesetzt werden soll
*
*
* @return *
the actual instance of this builder
*
die aktuelle Instanz des Builders
*
*
* */ T version(String aVersion); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy