本文整理汇总了Java中org.springframework.security.oauth2.provider.token.RemoteTokenServices类的典型用法代码示例。如果您正苦于以下问题:Java RemoteTokenServices类的具体用法?Java RemoteTokenServices怎么用?Java RemoteTokenServices使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
RemoteTokenServices类属于org.springframework.security.oauth2.provider.token包,在下文中一共展示了RemoteTokenServices类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: configure
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Override
public void configure(ResourceServerSecurityConfigurer resources) throws Exception {
RemoteTokenServices remoteTokenServices = new RemoteTokenServices();
StringBuilder serverUrlBuilder = new StringBuilder();
remoteTokenServices.setCheckTokenEndpointUrl(serverUrlBuilder.append(serverUrl).append("/check_token").toString());
remoteTokenServices.setClientId(clientId);
remoteTokenServices.setClientSecret(secret);
resources.tokenServices(remoteTokenServices);
resources.resourceId(resourceId);
}
示例2: tokenServices
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Bean
public ResourceServerTokenServices tokenServices() {
final RemoteTokenServices remoteTokenServices = new RemoteTokenServices();
remoteTokenServices.setClientId(this.clientId);
remoteTokenServices.setClientSecret(this.clientSecret);
remoteTokenServices.setCheckTokenEndpointUrl(this.checkTokenUrl);
return remoteTokenServices;
}
示例3: remoteTokenServices
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Bean
public RemoteTokenServices remoteTokenServices() {
RemoteTokenServices services = new RemoteTokenServices();
services.setCheckTokenEndpointUrl(this.resource.getTokenInfoUri());
services.setClientId(this.resource.getClientId());
services.setClientSecret(this.resource.getClientSecret());
return services;
}
开发者ID:spring-projects,项目名称:spring-security-oauth2-boot,代码行数:9,代码来源:ResourceServerTokenServicesConfiguration.java
示例4: useRemoteTokenServices
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Test
public void useRemoteTokenServices() {
TestPropertyValues.of("security.oauth2.resource.tokenInfoUri:http://example.com")
.applyTo(this.environment);
this.context = new SpringApplicationBuilder(ResourceConfiguration.class)
.environment(this.environment).web(WebApplicationType.NONE).run();
RemoteTokenServices services = this.context.getBean(RemoteTokenServices.class);
assertThat(services).isNotNull();
}
开发者ID:spring-projects,项目名称:spring-security-oauth2-boot,代码行数:10,代码来源:ResourceServerTokenServicesConfigurationTests.java
示例5: switchToJwt
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Test
public void switchToJwt() {
TestPropertyValues.of("security.oauth2.resource.jwt.keyValue=FOOBAR")
.applyTo(this.environment);
this.context = new SpringApplicationBuilder(ResourceConfiguration.class)
.environment(this.environment).web(WebApplicationType.NONE).run();
DefaultTokenServices services = this.context.getBean(DefaultTokenServices.class);
assertThat(services).isNotNull();
this.thrown.expect(NoSuchBeanDefinitionException.class);
this.context.getBean(RemoteTokenServices.class);
}
开发者ID:spring-projects,项目名称:spring-security-oauth2-boot,代码行数:12,代码来源:ResourceServerTokenServicesConfigurationTests.java
示例6: jwkConfiguration
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Test
public void jwkConfiguration() throws Exception {
TestPropertyValues
.of("security.oauth2.resource.jwk.key-set-uri=http://my-auth-server/token_keys")
.applyTo(this.environment);
this.context = new SpringApplicationBuilder(ResourceConfiguration.class)
.environment(this.environment).web(WebApplicationType.NONE).run();
DefaultTokenServices services = this.context.getBean(DefaultTokenServices.class);
assertThat(services).isNotNull();
this.thrown.expect(NoSuchBeanDefinitionException.class);
this.context.getBean(RemoteTokenServices.class);
}
开发者ID:spring-projects,项目名称:spring-security-oauth2-boot,代码行数:13,代码来源:ResourceServerTokenServicesConfigurationTests.java
示例7: detect
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Override
public Set<Relationship> detect() {
if (tokenService instanceof RemoteTokenServices || tokenService instanceof UserInfoTokenServices) {
return Dependency.on(Component.of(getDefaultName(), ComponentType.HTTP_APPLICATION)).asRelationshipSet();
}
return Collections.emptySet();
}
示例8: usingRemoteTokenServicesShouldReturnDependency
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Test
public void usingRemoteTokenServicesShouldReturnDependency() {
ResourceServerTokenServices tokenService = new RemoteTokenServices();
detector = new AuthorizationServerRelationshipDetector(tokenService);
Set<Relationship> expected = new HashSet<>(Arrays
.asList(Dependency.on(Component.of("oauth2-authorization-server", ComponentType.HTTP_APPLICATION))));
Set<Relationship> result = detector.detect();
Assertions.assertThat(result).isEqualTo(expected);
}
示例9: usingRemoteTokenServicesWithCustomName
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Test
public void usingRemoteTokenServicesWithCustomName() {
ResourceServerTokenServices tokenService = new RemoteTokenServices();
detector = new AuthorizationServerRelationshipDetector(tokenService);
String customName = "authz";
detector.setDefaultName(customName);
Set<Relationship> expected = new HashSet<>(
Arrays.asList(Dependency.on(Component.of(customName, ComponentType.HTTP_APPLICATION))));
Set<Relationship> result = detector.detect();
Assertions.assertThat(result).isEqualTo(expected);
}
示例10: remoteTokenServices
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Bean
public RemoteTokenServices remoteTokenServices() {
RemoteTokenServices tokenServices = new RemoteTokenServices();
tokenServices.setClientId("resource_server");
tokenServices.setClientSecret("abc123");
tokenServices.setCheckTokenEndpointUrl("http://localhost:8080/oauth/check_token");
tokenServices.setAccessTokenConverter(accessTokenConverter());
return new CustomRemoteTokenServices(tokenServices);
}
示例11: remoteTokenServices
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Bean
public RemoteTokenServices remoteTokenServices() {
RemoteTokenServices tokenServices = new RemoteTokenServices();
tokenServices.setClientId("resource_server");
tokenServices.setClientSecret("abc123");
tokenServices.setCheckTokenEndpointUrl("http://localhost:8080/oauth/check_token");
tokenServices.setAccessTokenConverter(accessTokenConverter());
return tokenServices;
}
示例12: LocalTokenService
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Bean
public RemoteTokenServices LocalTokenService() {
final RemoteTokenServices tokenService = new RemoteTokenServices();
tokenService.setCheckTokenEndpointUrl("http://localhost:8081/oauth/check_token");
tokenService.setClientId("my-client-with-secret");
tokenService.setClientSecret("secret");
return tokenService;
}
示例13: remoteTokenServices
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Bean
public RemoteTokenServices remoteTokenServices() {
RemoteTokenServices s = new RemoteTokenServices();
s.setAccessTokenConverter(accessTokenConverter());
s.setCheckTokenEndpointUrl(environment.getProperty("authentication.oauth2.url"));
s.setClientId(environment.getProperty("authentication.oauth2.clientId"));
s.setClientSecret(environment.getProperty("authentication.oauth2.clientSecret"));
return s;
}
示例14: remoteTokenServices
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
public
@Bean
ResourceServerTokenServices remoteTokenServices() {
RemoteTokenServices rts = new RemoteTokenServices();
rts.setClientId("type-server");
rts.setClientSecret("1a9030fbca47a5b2c28e92f19050bb77824b5ad1");
rts.setCheckTokenEndpointUrl("http://localhost:8083/oauth/check_token");
return rts;
}
示例15: defaultIsRemoteTokenServices
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; //导入依赖的package包/类
@Test
public void defaultIsRemoteTokenServices() {
this.context = new SpringApplicationBuilder(ResourceConfiguration.class)
.web(false).run();
RemoteTokenServices services = this.context.getBean(RemoteTokenServices.class);
assertThat(services).isNotNull();
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:8,代码来源:ResourceServerTokenServicesConfigurationTests.java