Uses of Class
net.openid.appauth.AuthorizationServiceConfiguration
-
Packages that use AuthorizationServiceConfiguration Package Description net.openid.appauth AppAuth for Android. -
-
Uses of AuthorizationServiceConfiguration in net.openid.appauth
Fields in net.openid.appauth declared as AuthorizationServiceConfiguration Modifier and Type Field Description AuthorizationServiceConfigurationAuthorizationRequest. configurationThe service’sconfiguration.AuthorizationServiceConfigurationEndSessionRequest. configurationThe service’sconfiguration.AuthorizationServiceConfigurationRegistrationRequest. configurationThe service’sconfiguration.AuthorizationServiceConfigurationTokenRequest. configurationThe service’sconfiguration.Methods in net.openid.appauth that return AuthorizationServiceConfiguration Modifier and Type Method Description static AuthorizationServiceConfigurationAuthorizationServiceConfiguration. fromJson(String jsonStr)Reads an Authorization service configuration from a JSON representation produced by thetoJson()method or some other equivalent producer.static AuthorizationServiceConfigurationAuthorizationServiceConfiguration. fromJson(JSONObject json)Reads an Authorization service configuration from a JSON representation produced by thetoJson()method or some other equivalent producer.AuthorizationServiceConfigurationAuthState. getAuthorizationServiceConfiguration()The configuration of the authorization service associated with this authorization state.Methods in net.openid.appauth with parameters of type AuthorizationServiceConfiguration Modifier and Type Method Description voidAuthorizationServiceConfiguration.RetrieveConfigurationCallback. onFetchConfigurationCompleted(AuthorizationServiceConfiguration serviceConfiguration, AuthorizationException ex)Invoked when the retrieval of the discovery doc completes successfully or fails.AuthorizationRequest.BuilderAuthorizationRequest.Builder. setAuthorizationServiceConfiguration(AuthorizationServiceConfiguration configuration)Specifies the service configuration to be used in dispatching this request.EndSessionRequest.BuilderEndSessionRequest.Builder. setAuthorizationServiceConfiguration(AuthorizationServiceConfiguration configuration)RegistrationRequest.BuilderRegistrationRequest.Builder. setConfiguration(AuthorizationServiceConfiguration configuration)Specifies the authorization service configuration for the request, which must not be null or empty.TokenRequest.BuilderTokenRequest.Builder. setConfiguration(AuthorizationServiceConfiguration configuration)Specifies the authorization service configuration for the request, which must not be null or empty.Constructors in net.openid.appauth with parameters of type AuthorizationServiceConfiguration Constructor Description AuthState(AuthorizationServiceConfiguration config)Creates an unauthenticatedAuthState, with the service configuration retained for convenience.Builder(AuthorizationServiceConfiguration configuration, String clientId, String responseType, Uri redirectUri)Creates an authorization request builder with the specified mandatory properties, and preset values forAuthorizationRequest.state,AuthorizationRequest.nonceandAuthorizationRequest.codeVerifier.Builder(AuthorizationServiceConfiguration configuration)Creates an end-session request builder with the specified mandatory properties and preset value forAuthorizationRequest.state.Builder(AuthorizationServiceConfiguration configuration, List<Uri> redirectUri)Creates a registration request builder with the specified mandatory properties.Builder(AuthorizationServiceConfiguration configuration, String clientId)Creates a token request builder with the specified mandatory properties.
-