org.projecthusky.xua.saml2.Response 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.List;
/**
*
*
* Interface describing the methods of Response.
* Interface welches die Methoden einer Response beschreibt.
*
*
*
*/
public interface Response extends SignatureBase {
/**
*
*
* Method to get the {@link org.projecthusky.xua.saml2.Assertion}s.
* Methode um die {@link org.projecthusky.xua.saml2.Assertion}s zu erhalten.
*
*
*
* @return
* a {@link java.util.List} of {@link org.projecthusky.xua.saml2.Assertion}.
* eine {@link java.util.List} von {@link org.projecthusky.xua.saml2.Assertion}.
*
*
*
*/
List getAssertions();
/**
*
*
*Method to get Consent value.
* Methode um den Consent wert zu erhalten.
*
*
*
* @return
* the Destination value as {@link java.lang.String}.
* der Destination Wert als {@link java.lang.String}.
*
*
*
*/
String getConsent();
/**
*
*
* Method to get Destination value.
* Methode um den Inhalt der Destination zu erhalten.
*
*
*
* @return
* the Destination value as {@link java.lang.String}.
* der Inhalt der Destination als {@link java.lang.String}.
*
*
*
*/
String getDestination();
/**
*
*
* Method to get the {@link org.projecthusky.xua.saml2.EncryptedAssertion}s.
* Methode um die {@link org.projecthusky.xua.saml2.EncryptedAssertion}s zu erhalten.
*
*
*
* @return
* a {@link java.util.List} of {@link org.projecthusky.xua.saml2.EncryptedAssertion}.
* eine {@link java.util.List} von {@link org.projecthusky.xua.saml2.EncryptedAssertion}.
*
*
*
*/
List getEncryptedAssertions();
/**
*
* Method to get InResponseTo value.
* Methode um den InResponseTo zu erhalten.
*
*
*
* @return
* the InResponseTo value as {@link java.lang.String}.
* der InResponseTo Wert als {@link java.lang.String}.
*
*
*
*/
String getInResponseTo();
/**
*
*
* Method to get the Status.
* Methode um den Status zu holen.
*
*
*
* @return
* the Status value as {@link org.projecthusky.xua.saml2.Status}.
* der Status als {@link org.projecthusky.xua.saml2.Status}.
*
*
*
*/
Status getStatus();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy