summaryrefslogtreecommitdiff
path: root/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/slo/SloInformationInterface.java
diff options
context:
space:
mode:
Diffstat (limited to 'eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/slo/SloInformationInterface.java')
-rw-r--r--eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/slo/SloInformationInterface.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/slo/SloInformationInterface.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/slo/SloInformationInterface.java
index fd4f9e12..e956c07f 100644
--- a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/slo/SloInformationInterface.java
+++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/slo/SloInformationInterface.java
@@ -33,14 +33,14 @@ public interface SloInformationInterface {
*
* @return SessionID (SessionIndex in case of SAML2)
*/
- public String getSessionIndex();
+ String getSessionIndex();
/**
* get user identifier which was used.
*
* @return bPK / wbPK (nameID in case of SAML2)
*/
- public String getUserNameIdentifier();
+ String getUserNameIdentifier();
/**
@@ -48,33 +48,33 @@ public interface SloInformationInterface {
*
* @return return authentication protocol type
*/
- public String getProtocolType();
+ String getProtocolType();
/**
* Format of the User NameId.
*
* @return
*/
- public String getUserNameIdFormat();
+ String getUserNameIdFormat();
/**
* Get the unique entityID of this Service-Provider.
*
* @return unique identifier, but never null
*/
- public String getSpEntityID();
+ String getSpEntityID();
- public String getAuthUrl();
+ String getAuthUrl();
- public String getServiceUrl();
+ String getServiceUrl();
- public String getBinding();
+ String getBinding();
- public void setUserNameIdentifier(String subjectNameId);
+ void setUserNameIdentifier(String subjectNameId);
- public void setNameIdFormat(String format);
+ void setNameIdFormat(String format);
- public void setSessionIndex(String sessionIndex);
+ void setSessionIndex(String sessionIndex);
}