org.projecthusky.xua.communication.clients.ArtifactResolveClient 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.communication.clients;
import org.projecthusky.xua.exceptions.ClientSendException;
import org.projecthusky.xua.saml2.ArtifactResolve;
import org.projecthusky.xua.saml2.ArtifactResponse;
/**
*
* HEREISENGLISH
* HIERISTDEUTSCH
* VOICIFRANCAIS
* ITALIANO
*
*
*/
public interface ArtifactResolveClient {
/**
*
* Method to send an ArtifactResolve.
* Methode um einen ArtifactResolve zu senden.
*
*
*
* @param aArtifactResolve
* the AuthnRequest to be sent.
* Der AuthnRequest welcher geschickt werden soll.
*
*
* @return
* the ArtifactResponse
* Die ArtifactResponse.
*
*
* @throws ClientSendException
* will be thrown if an error occoures
* wird geworfen wenn ein Fehler auftritt.
*
*
*
*/
ArtifactResponse send(ArtifactResolve aArtifactResolve) throws ClientSendException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy