org.springframework.security.oauth2.provider.implicit
类 InMemoryImplicitGrantService

java.lang.Object
  继承者 org.springframework.security.oauth2.provider.implicit.InMemoryImplicitGrantService
所有已实现的接口:
ImplicitGrantService

public class InMemoryImplicitGrantService
extends Object
implements ImplicitGrantService

In-memory implementation of the ImplicitGrantService.

作者:
Amanda Anganes

字段摘要
protected  ConcurrentHashMap<TokenRequest,OAuth2Request> requestStore
           
 
构造方法摘要
InMemoryImplicitGrantService()
           
 
方法摘要
 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.
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

字段详细信息

requestStore

protected final ConcurrentHashMap<TokenRequest,OAuth2Request> requestStore
构造方法详细信息

InMemoryImplicitGrantService

public InMemoryImplicitGrantService()
方法详细信息

store

public void store(OAuth2Request originalRequest,
                  TokenRequest tokenRequest)
从接口 ImplicitGrantService 复制的描述
Save an association between an OAuth2Request and a TokenRequest.

指定者:
接口 ImplicitGrantService 中的 store

remove

public OAuth2Request remove(TokenRequest tokenRequest)
从接口 ImplicitGrantService 复制的描述
Look up and return the OAuth2Request associated with the given TokenRequest.

指定者:
接口 ImplicitGrantService 中的 remove
返回:


Copyright © 2013. All rights reserved.