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

org.projecthusky.xua.saml2.SubjectConfirmation 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 decribing the methods of SubjectConfirmation.
*
Interface welches die Methoden von SubjectConfirmation beschreibt.
*
*
* */ public interface SubjectConfirmation { /** * *
Method to get the Address.
*
Methode um die Addresse zu erhalten.
*
*
* * @return *
the Address as {@link java.lang.String}
*
die Addresse as {@link java.lang.String}
*
*
* */ String getAddress(); /** * *
Method to get the InResponseTo.
*
Methode um den Inhalt von InResponseTo zu erhalten.
*
*
* * @return *
the InResponseTo as {@link java.lang.String}
*
den Inhalt von InResponseTo als {@link java.lang.String}
*
*
* */ String getInResponseTo(); /** * *
Method to get the Method.
*
Methode um die Method zu erhalten.
*
*
* * @return *
the NMethod as {@link java.lang.String}
*
die Method as {@link java.lang.String}
*
*
* */ String getMethod(); /** * *
Method to get the NotBefore.
*
Methode um das NotBefore zu erhalten.
*
*
* * @return *
the NotBefore as {@link java.util.Calendar}
*
das NotBefore als {@link java.util.Calendar}
*
*
* */ Calendar getNotBefore(); /** * *
Method to get the NotOnOrAfter.
*
Methode um das NotOnOrAfter zu erhalten.
*
*
* * @return *
the NotOnOrAfter as {@link java.util.Calendar}
*
das NotOnOrAfter als {@link java.util.Calendar}
*
*
* */ Calendar getNotOnOrAfter(); /** * *
Method to get the Recipient.
*
Methode um den Recipient zu erhalten.
*
*
* * @return *
the Recipient as {@link java.lang.String}
*
den Recipient as {@link java.lang.String}
*
*
* */ String getRecipient(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy