public abstract class FedletAdapter extends Object
FedletAdapter
abstract class provides methods
that could be extended to perform user specific logics during SAMLv2
protocol processing on the Service Provider side. The implementation class
could be configured on a per service provider basis in the extended
metadata configuration.
A singleton instance of this FedletAdapter
class will be used per Service Provider during runtime, so make sure
implementation of the methods are thread safe.
Constructor and Description |
---|
FedletAdapter() |
Modifier and Type | Method and Description |
---|---|
boolean |
doFedletSLO(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
LogoutRequest logoutReq,
String hostedEntityID,
String idpEntityID,
List siList,
String nameIDValue,
String binding)
Invokes after Fedlet receives SLO request from IDP.
|
abstract void |
initialize(Map initParams)
Initializes the fedlet adapter, this method will only be executed
once after creation of the adapter instance.
|
void |
onFedletSLOFailure(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
LogoutRequest logoutReq,
LogoutResponse logoutRes,
String hostedEntityID,
String idpEntityID,
String binding)
Invokes after Fedlet receives SLO response from IDP and the SLO status
is not success.
|
void |
onFedletSLOSuccess(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
LogoutRequest logoutReq,
LogoutResponse logoutRes,
String hostedEntityID,
String idpEntityID,
String binding)
Invokes after Fedlet receives SLO response from IDP and the SLO status
is success.
|
public abstract void initialize(Map initParams)
initParams
- initial set of parameters configured in the fedlet
for this adapter. One of the parameters named
HOSTED_ENTITY_ID
refers to the ID of this
fedlet entity.public boolean doFedletSLO(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, LogoutRequest logoutReq, String hostedEntityID, String idpEntityID, List siList, String nameIDValue, String binding) throws SAML2Exception
request
- servlet requestresponse
- servlet responsehostedEntityID
- entity ID for the fedletidpEntityID
- entity id for the IDP to which the request is
received from.siList
- List of SessionIndex whose session to be logged outnameIDValue
- nameID value whose session to be logged outbinding
- Single Logout binding used,
one of following values:
SAML2Constants.SOAP
,
SAML2Constants.HTTP_POST
,
SAML2Constants.HTTP_REDIRECT
true
if user is logged out successfully;
false
otherwise.SAML2Exception
- if user want to fail the process.public void onFedletSLOSuccess(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, LogoutRequest logoutReq, LogoutResponse logoutRes, String hostedEntityID, String idpEntityID, String binding) throws SAML2Exception
request
- servlet requestresponse
- servlet responselogoutReq
- SAML2 LogoutRequest
objectlogoutRes
- SAML2 LogoutResponse
objecthostedEntityID
- entity ID for the fedletidpEntityID
- entity id for the IDP to which the logout response
is received from.binding
- Single Logout binding used,
one of following values:
SAML2Constants.SOAP
,
SAML2Constants.HTTP_POST
,
SAML2Constants.HTTP_REDIRECT
SAML2Exception
- if user want to fail the process.public void onFedletSLOFailure(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, LogoutRequest logoutReq, LogoutResponse logoutRes, String hostedEntityID, String idpEntityID, String binding) throws SAML2Exception
request
- servlet requestresponse
- servlet responselogoutReq
- SAML2 LogoutRequest
objectlogoutRes
- SAML2 LogoutResponse
objecthostedEntityID
- entity ID for the fedletidpEntityID
- entity id for the IDP to which the logout response
is received from.binding
- Single Logout binding used,
one of following values:
SAML2Constants.SOAP
,
SAML2Constants.HTTP_POST
,
SAML2Constants.HTTP_REDIRECT
SAML2Exception
- if user want to fail the process.Copyright © 2010-2018, ForgeRock All Rights Reserved.