refactor(security): remove unused KeycloakLogoutHandler dependency
This commit is contained in:
		
					parent
					
						
							
								37ab14d33e
							
						
					
				
			
			
				commit
				
					
						21dd134dd6
					
				
			
		
					 1 changed files with 1 additions and 5 deletions
				
			
		| 
						 | 
					@ -29,14 +29,10 @@ import org.springframework.security.web.util.matcher.AntPathRequestMatcher;
 | 
				
			||||||
@EnableWebSecurity
 | 
					@EnableWebSecurity
 | 
				
			||||||
class KeycloakSecurityConfig {
 | 
					class KeycloakSecurityConfig {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    private static final String GROUPS = "groups";
 | 
					 | 
				
			||||||
    private static final String REALM_ACCESS_CLAIM = "realm_access";
 | 
					    private static final String REALM_ACCESS_CLAIM = "realm_access";
 | 
				
			||||||
    private static final String ROLES_CLAIM = "roles";
 | 
					    private static final String ROLES_CLAIM = "roles";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    private final KeycloakLogoutHandler keycloakLogoutHandler;
 | 
					    KeycloakSecurityConfig() {
 | 
				
			||||||
 | 
					 | 
				
			||||||
    KeycloakSecurityConfig(KeycloakLogoutHandler keycloakLogoutHandler) {
 | 
					 | 
				
			||||||
        this.keycloakLogoutHandler = keycloakLogoutHandler;
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @Bean
 | 
					    @Bean
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue