Uses of Class
org.springframework.security.oauth2.common.exceptions.OAuth2Exception

Packages that use OAuth2Exception
org.springframework.security.oauth2.client.resource   
org.springframework.security.oauth2.common.exceptions   
org.springframework.security.oauth2.http.converter   
org.springframework.security.oauth2.http.converter.jaxb   
org.springframework.security.oauth2.provider   
org.springframework.security.oauth2.provider.endpoint   
org.springframework.security.oauth2.provider.error   
 

Uses of OAuth2Exception in org.springframework.security.oauth2.client.resource
 

Subclasses of OAuth2Exception in org.springframework.security.oauth2.client.resource
 class OAuth2AccessDeniedException
          When access is denied we usually want a 403, but we want the same treatment as all teh other OAuth2Exception types, so this is not a Spring Security AccessDeniedException.
 

Uses of OAuth2Exception in org.springframework.security.oauth2.common.exceptions
 

Subclasses of OAuth2Exception in org.springframework.security.oauth2.common.exceptions
 class BadClientCredentialsException
          Exception thrown when a client was unable to authenticate.
 class ClientAuthenticationException
          Base exception
 class InsufficientScopeException
          Exception representing insufficient scope in a token when a request is handled by a Resource Server.
 class InvalidClientException
          Exception thrown when a client was unable to authenticate.
 class InvalidGrantException
           
 class InvalidRequestException
           
 class InvalidScopeException
          Exception representing an invalid scope in a token or authorization request (i.e.
 class InvalidTokenException
           
 class RedirectMismatchException
           
 class UnauthorizedClientException
          Exception thrown when a client was unable to authenticate.
 class UnsupportedGrantTypeException
           
 class UnsupportedResponseTypeException
           
 class UserDeniedAuthorizationException
           
 

Methods in org.springframework.security.oauth2.common.exceptions that return OAuth2Exception
static OAuth2Exception OAuth2Exception.create(String errorCode, String errorMessage)
          Creates the appropriate subclass of OAuth2Exception given the errorCode.
 OAuth2Exception OAuth2ExceptionJackson2Deserializer.deserialize(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.databind.DeserializationContext ctxt)
           
 OAuth2Exception OAuth2ExceptionJackson1Deserializer.deserialize(org.codehaus.jackson.JsonParser jp, org.codehaus.jackson.map.DeserializationContext ctxt)
           
static OAuth2Exception OAuth2Exception.valueOf(Map<String,String> errorParams)
          Creates an OAuth2Exception from a Map.
 

Methods in org.springframework.security.oauth2.common.exceptions with parameters of type OAuth2Exception
 void OAuth2ExceptionJackson1Serializer.serialize(OAuth2Exception value, org.codehaus.jackson.JsonGenerator jgen, org.codehaus.jackson.map.SerializerProvider provider)
           
 void OAuth2ExceptionJackson2Serializer.serialize(OAuth2Exception value, com.fasterxml.jackson.core.JsonGenerator jgen, com.fasterxml.jackson.databind.SerializerProvider provider)
           
 

Uses of OAuth2Exception in org.springframework.security.oauth2.http.converter
 

Methods in org.springframework.security.oauth2.http.converter that return OAuth2Exception
 OAuth2Exception FormOAuth2ExceptionHttpMessageConverter.read(Class<? extends OAuth2Exception> clazz, org.springframework.http.HttpInputMessage inputMessage)
           
 

Methods in org.springframework.security.oauth2.http.converter with parameters of type OAuth2Exception
 void FormOAuth2ExceptionHttpMessageConverter.write(OAuth2Exception t, org.springframework.http.MediaType contentType, org.springframework.http.HttpOutputMessage outputMessage)
           
 

Method parameters in org.springframework.security.oauth2.http.converter with type arguments of type OAuth2Exception
 OAuth2Exception FormOAuth2ExceptionHttpMessageConverter.read(Class<? extends OAuth2Exception> clazz, org.springframework.http.HttpInputMessage inputMessage)
           
 

Uses of OAuth2Exception in org.springframework.security.oauth2.http.converter.jaxb
 

Methods in org.springframework.security.oauth2.http.converter.jaxb that return OAuth2Exception
protected  OAuth2Exception JaxbOAuth2ExceptionMessageConverter.convertToExternal(org.springframework.security.oauth2.http.converter.jaxb.JaxbOAuth2Exception jaxbOAuth2Exception)
           
 

Methods in org.springframework.security.oauth2.http.converter.jaxb with parameters of type OAuth2Exception
protected  org.springframework.security.oauth2.http.converter.jaxb.JaxbOAuth2Exception JaxbOAuth2ExceptionMessageConverter.convertToInternal(OAuth2Exception exception)
           
 

Uses of OAuth2Exception in org.springframework.security.oauth2.provider
 

Methods in org.springframework.security.oauth2.provider that throw OAuth2Exception
 ClientDetails InMemoryClientDetailsService.loadClientByClientId(String clientId)
           
 

Uses of OAuth2Exception in org.springframework.security.oauth2.provider.endpoint
 

Methods in org.springframework.security.oauth2.provider.endpoint that return types with arguments of type OAuth2Exception
 org.springframework.http.ResponseEntity<OAuth2Exception> TokenEndpoint.handleClientRegistrationException(Exception e)
           
 org.springframework.http.ResponseEntity<OAuth2Exception> TokenEndpoint.handleException(Exception e)
           
 

Methods in org.springframework.security.oauth2.provider.endpoint with parameters of type OAuth2Exception
 org.springframework.web.servlet.ModelAndView AuthorizationEndpoint.handleOAuth2Exception(OAuth2Exception e, org.springframework.web.context.request.ServletWebRequest webRequest)
           
 

Methods in org.springframework.security.oauth2.provider.endpoint that throw OAuth2Exception
 String RedirectResolver.resolveRedirect(String requestedRedirect, ClientDetails client)
          Resolve the redirect for the specified client.
 String DefaultRedirectResolver.resolveRedirect(String requestedRedirect, ClientDetails client)
           
 

Uses of OAuth2Exception in org.springframework.security.oauth2.provider.error
 

Methods in org.springframework.security.oauth2.provider.error that return types with arguments of type OAuth2Exception
protected  org.springframework.http.ResponseEntity<OAuth2Exception> AbstractOAuth2SecurityExceptionHandler.enhanceResponse(org.springframework.http.ResponseEntity<OAuth2Exception> result, Exception authException)
          Allow subclasses to manipulate the response before it is rendered.
protected  org.springframework.http.ResponseEntity<OAuth2Exception> OAuth2AuthenticationEntryPoint.enhanceResponse(org.springframework.http.ResponseEntity<OAuth2Exception> response, Exception exception)
           
 org.springframework.http.ResponseEntity<OAuth2Exception> DefaultWebResponseExceptionTranslator.translate(Exception e)
           
 org.springframework.http.ResponseEntity<OAuth2Exception> WebResponseExceptionTranslator.translate(Exception e)
           
 

Method parameters in org.springframework.security.oauth2.provider.error with type arguments of type OAuth2Exception
protected  org.springframework.http.ResponseEntity<OAuth2Exception> AbstractOAuth2SecurityExceptionHandler.enhanceResponse(org.springframework.http.ResponseEntity<OAuth2Exception> result, Exception authException)
          Allow subclasses to manipulate the response before it is rendered.
protected  org.springframework.http.ResponseEntity<OAuth2Exception> OAuth2AuthenticationEntryPoint.enhanceResponse(org.springframework.http.ResponseEntity<OAuth2Exception> response, Exception exception)
           
 



Copyright © 2013. All rights reserved.