org.springframework.security.oauth2.provider.implicit
接口 ImplicitGrantService

所有已知实现类:
InMemoryImplicitGrantService

public interface ImplicitGrantService

Service to associate & store an incoming AuthorizationRequest with the TokenRequest that is passed to the ImplicitTokenGranter during the Implicit flow. This mimics the AuthorizationCodeServices functionality from the Authorization Code flow, allowing the ImplicitTokenGranter to reference the original AuthorizationRequest, while still allowing the ImplicitTokenGranter to adhere to the TokenGranter interface.

作者:
Amanda Anganes

方法摘要
 OAuth2Request remove(TokenRequest tokenRequest)
          Look up and return the OAuth2Request associated with the given TokenRequest.
 void store(OAuth2Request originalRequest, TokenRequest tokenRequest)
          Save an association between an OAuth2Request and a TokenRequest.
 

方法详细信息

store

void store(OAuth2Request originalRequest,
           TokenRequest tokenRequest)
Save an association between an OAuth2Request and a TokenRequest.

参数:
originalRequest -
tokenRequest -

remove

OAuth2Request remove(TokenRequest tokenRequest)
Look up and return the OAuth2Request associated with the given TokenRequest.

参数:
tokenRequest -
返回:


Copyright © 2013. All rights reserved.