List of usage examples for org.springframework.security.config.annotation.web.configuration WebSecurityConfigurerAdapter subclass-usage
From source file com.ericsson.eiffel.remrem.generate.config.SecurityConfig.java
/** * This class is used to enable the ldap authentication based on property * activedirectory.generate.enabled=true in property file. * */ @Profile("!integration-test")
From source file com.javiermoreno.springboot.rest.TokenSecurityAdapter.java
@Configuration @EnableWebSecurity @EnableGlobalMethodSecurity(prePostEnabled = true) public class TokenSecurityAdapter extends WebSecurityConfigurerAdapter { private static final String TOKEN_NAME = "X-Token";
From source file edu.chalmers.dat076.moviefinder.config.SecurityConfig.java
/**
* Configuration options for the Spring-Security framework.
* @author Peter
*/
@Configuration
@EnableWebMvcSecurity
From source file business.security.HttpSecurityConfiguration.java
@Configuration @EnableWebSecurity @Order(SecurityProperties.ACCESS_OVERRIDE_ORDER) public class HttpSecurityConfiguration extends WebSecurityConfigurerAdapter { Log log = LogFactory.getLog(getClass());
From source file org.ingini.spring.boot.mongodb.config.SecurityConfig.java
@Configuration @EnableWebMvcSecurity @EnableGlobalMethodSecurity(securedEnabled = true) @Order(SecurityProperties.ACCESS_OVERRIDE_ORDER) public class SecurityConfig extends WebSecurityConfigurerAdapter {
From source file com.coinblesk.server.config.SecurityConfig.java
/**
*
* @author Thomas Bocek
* @author Andreas Albrecht
* @author Sebastian Stephan
*/
From source file org.flowable.rest.conf.SecurityConfiguration.java
@Configuration @EnableWebSecurity public class SecurityConfiguration extends WebSecurityConfigurerAdapter { protected final RestAppProperties restAppProperties;
From source file com.orange.clara.tool.config.SecurityConfig.java
/**
* Copyright (C) 2016 Orange
* <p>
* This software is distributed under the terms and conditions of the 'Apache-2.0'
* license which can be found in the file 'LICENSE' in this package distribution
* or at 'https://opensource.org/licenses/Apache-2.0'.
From source file shiver.me.timbers.spring.security.integration.JwtApplySecurityConfiguration.java
@Configuration @EnableAutoConfiguration @EnableWebSecurity @Import({ SpringSecurityConfiguration.class, SpringSecurityControllerConfiguration.class }) @Order(101) public class JwtApplySecurityConfiguration extends WebSecurityConfigurerAdapter {
From source file br.com.joaops.smt.configuration.SecurityConfig.java
/**
*
* @author Joo
*/
@Configuration
@EnableWebSecurity