org.projecthusky.xua.wssecurity.UsernameToken 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.wssecurity;
import org.projecthusky.xua.core.SecurityHeaderElement;
/**
*
* Interface decribing the methods of UsernameToken
* Interface welches die Methoden von UsernameToken beschreibt
*
*
*
*/
public interface UsernameToken extends SecurityHeaderElement {
/**
*
* Method to get the nonce.
* Methode um den Nonce zu erhalten
*
*
*
* @return
* the nonce (random value) as string.
* Den Nonce (Zufallswert) als String.
*
*
*
*/
String getNonce();
/**
*
* Method to get the password.
* Methode um das Passwort zu erhalten.
*
*
*
* @return
* the password.
* das Passwort.
*
*
*
*/
String getPassword();
/**
*
* Method to get the username.
* Methode um den Usernamen zu erhalten.
*
*
*
* @return
* the username.
* den Username.
*
*
*
*/
String getUsername();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy