Package net.openid.appauth
Interface AuthorizationManagementRequest
-
- All Known Implementing Classes:
AuthorizationRequest,EndSessionRequest
public interface AuthorizationManagementRequest
A base request for session management modelsAuthorizationRequestEndSessionRequest
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetState()An opaque value used by the client to maintain state between the request and callback.JSONObjectjsonSerialize()Produces a JSON representation of the request for persistent storage or local transmission (e.g.StringjsonSerializeString()Produces a JSON string representation of the request for persistent storage or local transmission (e.g.UritoUri()Produces a request URI, that can be used to dispatch the request.
-
-
-
Method Detail
-
jsonSerialize
JSONObject jsonSerialize()
Produces a JSON representation of the request for persistent storage or local transmission (e.g.between activities).
-
jsonSerializeString
String jsonSerializeString()
Produces a JSON string representation of the request for persistent storage or local transmission (e.g.between activities). This method is just a convenience wrapper for
jsonSerialize(), converting the JSON object to its string form.
-
getState
String getState()
An opaque value used by the client to maintain state between the request and callback.
-
-