org.springframework.security.oauth2.provider
类 InMemoryClientDetailsService

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

public class InMemoryClientDetailsService
extends Object
implements ClientDetailsService

Basic, in-memory implementation of the client details service.

作者:
Ryan Heaton

构造方法摘要
InMemoryClientDetailsService()
           
 
方法摘要
 Map<String,? extends ClientDetails> getClientDetailsStore()
           
 ClientDetails loadClientByClientId(String clientId)
          Load a client by the client id.
 void setClientDetailsStore(Map<String,? extends ClientDetails> clientDetailsStore)
           
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

InMemoryClientDetailsService

public InMemoryClientDetailsService()
方法详细信息

loadClientByClientId

public ClientDetails loadClientByClientId(String clientId)
                                   throws OAuth2Exception
从接口 ClientDetailsService 复制的描述
Load a client by the client id. This method must not return null.

指定者:
接口 ClientDetailsService 中的 loadClientByClientId
参数:
clientId - The client id.
返回:
The client details.
抛出:
OAuth2Exception

getClientDetailsStore

public Map<String,? extends ClientDetails> getClientDetailsStore()

setClientDetailsStore

public void setClientDetailsStore(Map<String,? extends ClientDetails> clientDetailsStore)


Copyright © 2013. All rights reserved.