Package com.nimbusds.oauth2.sdk
Class ResponseMode
- java.lang.Object
-
- com.nimbusds.oauth2.sdk.id.Identifier
-
- com.nimbusds.oauth2.sdk.ResponseMode
-
- All Implemented Interfaces:
Serializable,Comparable<Identifier>,net.minidev.json.JSONAware
@Immutable public final class ResponseMode extends Identifier
Authorisation response mode.Related specifications:
- OAuth 2.0 Multiple Response Type Encoding Practices 1.0.
- OAuth 2.0 Form Post Response Mode 1.0.
- Financial-grade API: JWT Secured Authorization Response Mode for OAuth 2.0 (JARM).
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ResponseModeFORM_POSTThe authorisation response parameters are encoded as HTML form values that are auto-submitted in the User Agent, and thus are transmitted via the HTTP POST method to the client, with the result parameters being encoded in the body using theapplication/x-www-form-urlencodedformat.static ResponseModeFORM_POST_JWTThe authorisation response parameters are packaged in a JSON Web Token (JWT) which is transmitted via the HTTP POST method to the client.static ResponseModeFRAGMENTThe authorisation response parameters are encoded in the fragment added to theredirect_uriwhen redirecting back to the client.static ResponseModeFRAGMENT_JWTThe authorisation response parameters are packaged in a JSON Web Token (JWT) which is returned as aresponsefragment parameter added to theredirect_uriwhen redirecting back to the client.static ResponseModeJWTThe authorisation response parameters are packaged in a JSON Web Token (JWT) which is returned as aresponseparameter using the redirect encoding (query.jwt,fragment.jwtfor the requestedresponse_type.static ResponseModeQUERYThe authorisation response parameters are encoded in the query string added to theredirect_uriwhen redirecting back to the client.static ResponseModeQUERY_JWTThe authorisation response parameters are packaged in a JSON Web Token (JWT) which is returned as aresponsequery parameter added to theredirect_uriwhen redirecting back to the client.-
Fields inherited from class com.nimbusds.oauth2.sdk.id.Identifier
DEFAULT_BYTE_LENGTH, secureRandom
-
-
Constructor Summary
Constructors Constructor Description ResponseMode(String value)Creates a new authorisation response mode with the specified value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object object)static ResponseModeresolve(ResponseMode rm, ResponseType rt)Resolves the requested response mode.-
Methods inherited from class com.nimbusds.oauth2.sdk.id.Identifier
compareTo, getValue, hashCode, toJSONString, toString, toStringList
-
-
-
-
Field Detail
-
QUERY
public static final ResponseMode QUERY
The authorisation response parameters are encoded in the query string added to theredirect_uriwhen redirecting back to the client.
-
FRAGMENT
public static final ResponseMode FRAGMENT
The authorisation response parameters are encoded in the fragment added to theredirect_uriwhen redirecting back to the client.
-
FORM_POST
public static final ResponseMode FORM_POST
The authorisation response parameters are encoded as HTML form values that are auto-submitted in the User Agent, and thus are transmitted via the HTTP POST method to the client, with the result parameters being encoded in the body using theapplication/x-www-form-urlencodedformat. The action attribute of the form MUST be the client's redirection URI. The method of the form attribute MUST be POST.
-
QUERY_JWT
public static final ResponseMode QUERY_JWT
The authorisation response parameters are packaged in a JSON Web Token (JWT) which is returned as aresponsequery parameter added to theredirect_uriwhen redirecting back to the client.
-
FRAGMENT_JWT
public static final ResponseMode FRAGMENT_JWT
The authorisation response parameters are packaged in a JSON Web Token (JWT) which is returned as aresponsefragment parameter added to theredirect_uriwhen redirecting back to the client.
-
FORM_POST_JWT
public static final ResponseMode FORM_POST_JWT
The authorisation response parameters are packaged in a JSON Web Token (JWT) which is transmitted via the HTTP POST method to the client. The action attribute of the form MUST be the client's redirection URI. The method of the form attribute MUST be POST.
-
JWT
public static final ResponseMode JWT
The authorisation response parameters are packaged in a JSON Web Token (JWT) which is returned as aresponseparameter using the redirect encoding (query.jwt,fragment.jwtfor the requestedresponse_type.
-
-
Constructor Detail
-
ResponseMode
public ResponseMode(String value)
Creates a new authorisation response mode with the specified value.- Parameters:
value- The response mode value. Must not benull.
-
-
Method Detail
-
resolve
public static ResponseMode resolve(ResponseMode rm, ResponseType rt)
Resolves the requested response mode.- Parameters:
rm- The explicitly requested response mode (response_mode),nullif not specified.rt- The response type (response_type),nullif not known.- Returns:
- The resolved response mode.
-
equals
public boolean equals(Object object)
- Overrides:
equalsin classIdentifier
-
-