summaryrefslogtreecommitdiff
path: root/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/ISsoManager.java
diff options
context:
space:
mode:
Diffstat (limited to 'eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/ISsoManager.java')
-rw-r--r--eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/ISsoManager.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/ISsoManager.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/ISsoManager.java
index a0734684..65c388e8 100644
--- a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/ISsoManager.java
+++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/ISsoManager.java
@@ -28,12 +28,12 @@ import at.gv.egiz.eaaf.core.exceptions.EaafSsoException;
public interface ISsoManager {
// TODO
- public static int EVENT_SSO_SESSION_INVALID = -1;
- public static int EVENT_SSO_SESSION_VALID = -1;
+ int EVENT_SSO_SESSION_INVALID = -1;
+ int EVENT_SSO_SESSION_VALID = -1;
- public static final String PROCESS_ENGINE_SSO_CONSENTS_EVALUATION = "ssoconsentsevaluation";
- public static final String AUTH_DATA_SSO_SESSIONID = "eaaf_authdata_sso_sessionId";
+ String PROCESS_ENGINE_SSO_CONSENTS_EVALUATION = "ssoconsentsevaluation";
+ String AUTH_DATA_SSO_SESSIONID = "eaaf_authdata_sso_sessionId";
/**
@@ -47,7 +47,7 @@ public interface ISsoManager {
* @return true if there is a valid SSO session, otherwise false
* @throws EaafSsoException In case of an internal error
*/
- public boolean checkAndValidateSsoSession(IRequest pendingReq, HttpServletRequest httpReq,
+ boolean checkAndValidateSsoSession(IRequest pendingReq, HttpServletRequest httpReq,
HttpServletResponse httpResp) throws EaafSsoException;
/**
@@ -61,7 +61,7 @@ public interface ISsoManager {
* @param pendingReq Current incoming pending request
* @param httpReq http Servlet request
*/
- public void isSsoAllowedForSp(IRequest pendingReq, HttpServletRequest httpReq);
+ void isSsoAllowedForSp(IRequest pendingReq, HttpServletRequest httpReq);
/**
@@ -70,7 +70,7 @@ public interface ISsoManager {
* @param pendingReq pending request that should be populated by SSO session
* @throws EaafSsoException if pending request contains no SSO information or population failed
*/
- public void populatePendingRequestWithSsoInformation(IRequest pendingReq) throws EaafSsoException;
+ void populatePendingRequestWithSsoInformation(IRequest pendingReq) throws EaafSsoException;
/**
@@ -82,7 +82,7 @@ public interface ISsoManager {
* @return true if a SSO session was closed successfully, otherwise false
* @throws EaafSsoException in case of an internal processing error
*/
- public boolean destroySsoSessionOnIdpOnly(HttpServletRequest httpReq,
+ boolean destroySsoSessionOnIdpOnly(HttpServletRequest httpReq,
HttpServletResponse httpResp, IRequest pendingReq) throws EaafSsoException;
@@ -96,7 +96,7 @@ public interface ISsoManager {
* @return new created SSO identifier
* @throws EaafSsoException In case of an internal error
*/
- public String createNewSsoSessionCookie(HttpServletRequest req, HttpServletResponse resp,
+ String createNewSsoSessionCookie(HttpServletRequest req, HttpServletResponse resp,
IRequest pendingReq) throws EaafSsoException;
@@ -107,7 +107,7 @@ public interface ISsoManager {
* @param newSsoSessionId new SSO sessionId
* @throws EaafSsoException In case of an internal error
*/
- public void createNewSsoSession(IRequest pendingReq, String newSsoSessionId)
+ void createNewSsoSession(IRequest pendingReq, String newSsoSessionId)
throws EaafSsoException;
@@ -119,7 +119,7 @@ public interface ISsoManager {
* @param sloInformation SLO information container
* @throws EaafSsoException In case of an internal error
*/
- public void updateSsoSession(IRequest pendingReq, String newSsoSessionId,
+ void updateSsoSession(IRequest pendingReq, String newSsoSessionId,
SloInformationInterface sloInformation) throws EaafSsoException;