Package org.gluu.oxauth.model.session
Interface EndSessionRequestParam
-
public interface EndSessionRequestParam
- Version:
- August 9, 2017
- Author:
- Javier Rojas Blum
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ID_TOKEN_HINT
Previously issued ID Token passed to the logout endpoint as a hint about the End-User's current authenticated session with the Client.static java.lang.String
POST_LOGOUT_REDIRECT_URI
URL to which the RP is requesting that the End-User's User-Agent be redirected after a logout has been performed.static java.lang.String
SESSION_ID
String that represents the End-User's login state at the OP.static java.lang.String
SID
static java.lang.String
STATE
Opaque value used by the RP to maintain state between the logout request and the callback to the endpoint specified by the post_logout_redirect_uri parameter.
-
-
-
Field Detail
-
ID_TOKEN_HINT
static final java.lang.String ID_TOKEN_HINT
Previously issued ID Token passed to the logout endpoint as a hint about the End-User's current authenticated session with the Client.- See Also:
- Constant Field Values
-
POST_LOGOUT_REDIRECT_URI
static final java.lang.String POST_LOGOUT_REDIRECT_URI
URL to which the RP is requesting that the End-User's User-Agent be redirected after a logout has been performed.- See Also:
- Constant Field Values
-
STATE
static final java.lang.String STATE
Opaque value used by the RP to maintain state between the logout request and the callback to the endpoint specified by the post_logout_redirect_uri parameter. If included in the logout request, the OP passes this value back to the RP using the state query parameter when redirecting the User Agent back to the RP.- See Also:
- Constant Field Values
-
SESSION_ID
static final java.lang.String SESSION_ID
String that represents the End-User's login state at the OP.- See Also:
- Constant Field Values
-
SID
static final java.lang.String SID
- See Also:
- Constant Field Values
-
-