Java Code Examples for org.springframework.security.oauth2.config.annotation.web.configurers.AuthorizationServerSecurityConfigurer#realm()
The following examples show how to use
org.springframework.security.oauth2.config.annotation.web.configurers.AuthorizationServerSecurityConfigurer#realm() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: OAuth2AuthorizationServerConfiguration.java From spring-security-oauth2-boot with Apache License 2.0 | 5 votes |
@Override public void configure(AuthorizationServerSecurityConfigurer security) throws Exception { security.passwordEncoder(NoOpPasswordEncoder.getInstance()); if (this.properties.getCheckTokenAccess() != null) { security.checkTokenAccess(this.properties.getCheckTokenAccess()); } if (this.properties.getTokenKeyAccess() != null) { security.tokenKeyAccess(this.properties.getTokenKeyAccess()); } if (this.properties.getRealm() != null) { security.realm(this.properties.getRealm()); } }
Example 2
Source File: AuthorizationServerConfiguration.java From onetwo with Apache License 2.0 | 5 votes |
@Override public void configure(AuthorizationServerSecurityConfigurer security) throws Exception { // security.and().requestMatchers() AuthorizationServerProps authProps = oauth2Properties.getAuthorizationServer(); if(authProps.isAllowFormAuthenticationForClients()){ security.allowFormAuthenticationForClients(); //FIX: AuthorizationServerSecurityConfigurer创建form验证filter的时,没有使用配置的oauth2AuthenticationEntryPoint security.addObjectPostProcessor(new ClientCredentialsTokenEndpointFilterPostProcessor()); } if(authProps.isSslOnly()){ security.sslOnly(); } if(StringUtils.isNotBlank(authProps.getRealm())){ security.realm(authProps.getRealm()); } if(StringUtils.isNotBlank(authProps.getCheckTokenAccess())){ security.checkTokenAccess(authProps.getCheckTokenAccess()); } if(StringUtils.isNotBlank(authProps.getTokenKeyAccess())){ security.tokenKeyAccess(authProps.getTokenKeyAccess()); } if(oauth2AuthenticationEntryPoint!=null){ security.authenticationEntryPoint(oauth2AuthenticationEntryPoint); } if(oauth2AccessDeniedHandler!=null){ security.accessDeniedHandler(oauth2AccessDeniedHandler); } if(passwordEncoder!=null){ security.passwordEncoder(passwordEncoder); } }
Example 3
Source File: AuthorizationServerConfiguration.java From openapi-generator with Apache License 2.0 | 4 votes |
@Override public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception { oauthServer.realm(REALM+"/client"); }
Example 4
Source File: AuthorizationServerConfiguration.java From swaggy-jenkins with MIT License | 4 votes |
@Override public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception { oauthServer.realm(REALM+"/client"); }
Example 5
Source File: AuthorizationServerConfiguration.java From swagger-aem with Apache License 2.0 | 4 votes |
@Override public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception { oauthServer.realm(REALM+"/client"); }