本文整理汇总了Java中org.springframework.security.oauth2.provider.token.TokenEnhancerChain.setTokenEnhancers方法的典型用法代码示例。如果您正苦于以下问题:Java TokenEnhancerChain.setTokenEnhancers方法的具体用法?Java TokenEnhancerChain.setTokenEnhancers怎么用?Java TokenEnhancerChain.setTokenEnhancers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.security.oauth2.provider.token.TokenEnhancerChain
的用法示例。
在下文中一共展示了TokenEnhancerChain.setTokenEnhancers方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: configure
import org.springframework.security.oauth2.provider.token.TokenEnhancerChain; //导入方法依赖的package包/类
@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints)
throws Exception {
TokenEnhancerChain tokenEnhancerChain = new TokenEnhancerChain();
tokenEnhancerChain.setTokenEnhancers(
Arrays.asList(
tokenEnhancer(),
accessTokenConverter()
));
endpoints.authenticationManager(authenticationManager)
.tokenStore(mongoTokenStore)
.tokenEnhancer(tokenEnhancerChain)
.allowedTokenEndpointRequestMethods(HttpMethod.GET, HttpMethod.POST);
}
示例2: configure
import org.springframework.security.oauth2.provider.token.TokenEnhancerChain; //导入方法依赖的package包/类
@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
TokenEnhancerChain chain = new TokenEnhancerChain();
chain.setTokenEnhancers(Arrays.asList(
new PoPTokenEnhancer(),
accessTokenConverter(),
new CleanTokenEnhancer()));
endpoints
.tokenEnhancer(chain);
}
示例3: configure
import org.springframework.security.oauth2.provider.token.TokenEnhancerChain; //导入方法依赖的package包/类
@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
TokenEnhancerChain chain = new TokenEnhancerChain();
chain.setTokenEnhancers(
Arrays.asList(enhancer, accessTokenConverter()));
endpoints
.authenticationManager(authenticationManager)
.tokenStore(jwtTokenStore())
.tokenEnhancer(chain)
.accessTokenConverter(accessTokenConverter());
}
开发者ID:PacktPublishing,项目名称:OAuth-2.0-Cookbook,代码行数:14,代码来源:OAuth2AuthorizationServerConfiguration.java
示例4: configure
import org.springframework.security.oauth2.provider.token.TokenEnhancerChain; //导入方法依赖的package包/类
@Override
public void configure(final AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
final TokenEnhancerChain tokenEnhancerChain = new TokenEnhancerChain();
tokenEnhancerChain.setTokenEnhancers(Arrays.asList(tokenEnhancer()));
endpoints.tokenStore(tokenStore())
.tokenEnhancer(tokenEnhancerChain).authenticationManager(authenticationManager);
}
开发者ID:PacktPublishing,项目名称:Building-Web-Apps-with-Spring-5-and-Angular,代码行数:8,代码来源:AuthServerOAuth2Config.java
示例5: configure
import org.springframework.security.oauth2.provider.token.TokenEnhancerChain; //导入方法依赖的package包/类
@Override
public void configure(final AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
// @formatter:off
final TokenEnhancerChain tokenEnhancerChain = new TokenEnhancerChain();
tokenEnhancerChain.setTokenEnhancers(Arrays.asList(tokenEnhancer()));
endpoints.tokenStore(tokenStore())
// .accessTokenConverter(accessTokenConverter())
.tokenEnhancer(tokenEnhancerChain).authenticationManager(authenticationManager);
// @formatter:on
}
示例6: configure
import org.springframework.security.oauth2.provider.token.TokenEnhancerChain; //导入方法依赖的package包/类
@Override
public void configure(final AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
final TokenEnhancerChain tokenEnhancerChain = new TokenEnhancerChain();
tokenEnhancerChain.setTokenEnhancers(Arrays.asList(tokenEnhancer()));
endpoints.tokenStore(tokenStore())
.tokenEnhancer(tokenEnhancerChain)
.authenticationManager(authenticationManager);
}
示例7: configure
import org.springframework.security.oauth2.provider.token.TokenEnhancerChain; //导入方法依赖的package包/类
@Override
public void configure(final AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
final TokenEnhancerChain tokenEnhancerChain = new TokenEnhancerChain();
tokenEnhancerChain.setTokenEnhancers(Arrays.asList(tokenEnhancer(), accessTokenConverter()));
endpoints.tokenStore(tokenStore())
.tokenEnhancer(tokenEnhancerChain)
.authenticationManager(authenticationManager);
}
示例8: tokenEnhancerChain
import org.springframework.security.oauth2.provider.token.TokenEnhancerChain; //导入方法依赖的package包/类
protected TokenEnhancerChain tokenEnhancerChain(){
TokenEnhancerChain chain = new TokenEnhancerChain();
if(tokenEnhancers!=null){
chain.setTokenEnhancers(tokenEnhancers);
}
return chain;
}
示例9: configure
import org.springframework.security.oauth2.provider.token.TokenEnhancerChain; //导入方法依赖的package包/类
@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
//pick up all TokenEnhancers incl. those defined in the application
//this avoids changes to this class if an application wants to add its own to the chain
Collection<TokenEnhancer> tokenEnhancers = applicationContext.getBeansOfType(TokenEnhancer.class).values();
TokenEnhancerChain tokenEnhancerChain=new TokenEnhancerChain();
tokenEnhancerChain.setTokenEnhancers(new ArrayList<>(tokenEnhancers));
endpoints
.authenticationManager(authenticationManager)
.tokenStore(tokenStore())
.tokenEnhancer(tokenEnhancerChain)
.reuseRefreshTokens(false); //don't reuse or we will run into session inactivity timeouts
}