Uses of Class
com.nimbusds.oauth2.sdk.ResponseType
-
Packages that use ResponseType Package Description com.nimbusds.oauth2.sdk Classes for representing, serialising and parsing OAuth 2.0 client requests and authorisation server responses.com.nimbusds.oauth2.sdk.as OAuth 2.0 Authorisation Server (AS) classes.com.nimbusds.oauth2.sdk.client OAuth 2.0 dynamic client registration.com.nimbusds.openid.connect.sdk Classes for representing, serialising and parsing OpenID Connect client requests and server responses.com.nimbusds.openid.connect.sdk.claims Claims and claim sets used in OpenID Connect. -
-
Uses of ResponseType in com.nimbusds.oauth2.sdk
Methods in com.nimbusds.oauth2.sdk that return ResponseType Modifier and Type Method Description static ResponseTypeResponseType. getDefault()Gets the default response type.ResponseTypeAuthorizationRequest. getResponseType()Gets the response type.ResponseTypeAuthorizationSuccessResponse. impliedResponseType()Returns the implied response type.static ResponseTypeResponseType. parse(String s)Parses a set of authorisation response types.Methods in com.nimbusds.oauth2.sdk with parameters of type ResponseType Modifier and Type Method Description static ResponseModeResponseMode. resolve(ResponseMode rm, ResponseType rt)Resolves the requested response mode.AuthorizationRequest.BuilderAuthorizationRequest.Builder. responseType(ResponseType rt)Sets the response type.Constructors in com.nimbusds.oauth2.sdk with parameters of type ResponseType Constructor Description AuthorizationRequest(URI uri, ResponseType rt, ClientID clientID)Creates a new minimal authorisation request.AuthorizationRequest(URI uri, ResponseType rt, ResponseMode rm, ClientID clientID, URI redirectURI, Scope scope, State state)Creates a new authorisation request.AuthorizationRequest(URI uri, ResponseType rt, ResponseMode rm, ClientID clientID, URI redirectURI, Scope scope, State state, CodeChallenge codeChallenge, CodeChallengeMethod codeChallengeMethod, List<URI> resources, boolean includeGrantedScopes, com.nimbusds.jwt.JWT requestObject, URI requestURI, Prompt prompt, Map<String,List<String>> customParams)Creates a new authorisation request with extension and custom parameters.Builder(ResponseType rt, ClientID clientID)Creates a new authorisation request builder. -
Uses of ResponseType in com.nimbusds.oauth2.sdk.as
Methods in com.nimbusds.oauth2.sdk.as that return types with arguments of type ResponseType Modifier and Type Method Description List<ResponseType>AuthorizationServerMetadata. getResponseTypes()Gets the supported response type values.Method parameters in com.nimbusds.oauth2.sdk.as with type arguments of type ResponseType Modifier and Type Method Description voidAuthorizationServerMetadata. setResponseTypes(List<ResponseType> rts)Sets the supported response type values. -
Uses of ResponseType in com.nimbusds.oauth2.sdk.client
Methods in com.nimbusds.oauth2.sdk.client that return types with arguments of type ResponseType Modifier and Type Method Description Set<ResponseType>ClientMetadata. getResponseTypes()Gets the expected OAuth 2.0 response types.Method parameters in com.nimbusds.oauth2.sdk.client with type arguments of type ResponseType Modifier and Type Method Description voidClientMetadata. setResponseTypes(Set<ResponseType> responseTypes)Sets the expected OAuth 2.0 response types. -
Uses of ResponseType in com.nimbusds.openid.connect.sdk
Methods in com.nimbusds.openid.connect.sdk that return ResponseType Modifier and Type Method Description ResponseTypeAuthenticationSuccessResponse. impliedResponseType()Methods in com.nimbusds.openid.connect.sdk with parameters of type ResponseType Modifier and Type Method Description static ClaimsRequestClaimsRequest. resolve(ResponseType responseType, Scope scope)Resolves the claims request for the specified response type and scope.static ClaimsRequestClaimsRequest. resolve(ResponseType responseType, Scope scope, ClaimsRequest claimsRequest)Resolves the merged claims request from the specified OpenID authentication request parameters.static ClaimsRequestClaimsRequest. resolve(ResponseType responseType, Scope scope, ClaimsRequest claimsRequest, Map<Scope.Value,Set<String>> customClaims)Resolves the merged claims request from the specified OpenID authentication request parameters.static ClaimsRequestClaimsRequest. resolve(ResponseType responseType, Scope scope, Map<Scope.Value,Set<String>> customClaims)Resolves the claims request for the specified response type and scope.AuthenticationRequest.BuilderAuthenticationRequest.Builder. responseType(ResponseType rt)Sets the response type.Constructors in com.nimbusds.openid.connect.sdk with parameters of type ResponseType Constructor Description AuthenticationRequest(URI uri, ResponseType rt, ResponseMode rm, Scope scope, ClientID clientID, URI redirectURI, State state, Nonce nonce, Display display, Prompt prompt, int maxAge, List<com.nimbusds.langtag.LangTag> uiLocales, List<com.nimbusds.langtag.LangTag> claimsLocales, com.nimbusds.jwt.JWT idTokenHint, String loginHint, List<ACR> acrValues, ClaimsRequest claims, String purpose, com.nimbusds.jwt.JWT requestObject, URI requestURI, CodeChallenge codeChallenge, CodeChallengeMethod codeChallengeMethod, List<URI> resources, boolean includeGrantedScopes, Map<String,List<String>> customParams)Creates a new OpenID Connect authentication request with extension and custom parameters.AuthenticationRequest(URI uri, ResponseType rt, Scope scope, ClientID clientID, URI redirectURI, State state, Nonce nonce)Creates a new minimal OpenID Connect authentication request.Builder(ResponseType rt, Scope scope, ClientID clientID, URI redirectURI)Creates a new OpenID Connect authentication request builder. -
Uses of ResponseType in com.nimbusds.openid.connect.sdk.claims
Methods in com.nimbusds.openid.connect.sdk.claims with parameters of type ResponseType Modifier and Type Method Description booleanIDTokenClaimsSet. hasRequiredClaims(ResponseType responseType)Deprecated.booleanIDTokenClaimsSet. hasRequiredClaims(ResponseType responseType, boolean iatAuthzEndpoint)Checks if this ID token claims set contains all required claims for the specified OpenID Connect response type.static booleanAccessTokenHash. isRequiredInIDTokenClaims(ResponseType responseType)Checks if an access token hash claim must be included in ID tokens for the specified response type.static booleanCodeHash. isRequiredInIDTokenClaims(ResponseType responseType)Checks if an authorisation code hash claim must be included in ID tokens for the specified response type.
-