Example usage for org.springframework.security.config.annotation.web.configuration WebSecurityConfigurerAdapter subclass-usage

List of usage examples for org.springframework.security.config.annotation.web.configuration WebSecurityConfigurerAdapter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.config.annotation.web.configuration WebSecurityConfigurerAdapter subclass-usage.

Usage

From source file io.getlime.security.powerauth.app.server.WebSecurityConfig.java

/**
 * Class that implements configuration of the Spring Security for RESTful interface
 * of the PowerAuth 2.0 Server. This configuration is prepared in such a way that it
 * does not apply to the SOAP interface - only to REST.
 *
 * If a configuration "powerauth.service.restrictAccess" suggests that access should be

From source file com.boxedfolder.carrot.config.security.WebSecurityConfig.java

/**
 * This security config is not using spring session to store session data in redis or something.
 * A stateless session with a custom x-auth-filter had been used instead.
 *
 * @author Heiko Dreyer (heiko@boxedfolder.com)
 */

From source file rd.kpath.config.SecurityConfig.java

/**
 * Security Configuration.
 * @author rajith
 */
@Configuration
@EnableWebSecurity

From source file com.github.djabry.platform.vaadin.config.WebSecurityConfig.java

/**
 * @author djabry
 */
@EnableWebMvcSecurity
@Configuration
@EnableAutoConfiguration

From source file com.xiovr.unibot.config.WebSecurityConfig.java

/**
 * @author xio4 Web security config
 */
@EnableWebMvcSecurity
@Configuration
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

From source file com.example.AuthzApp.java

@SpringBootApplication
@EnableAuthorizationServer
public class AuthzApp extends WebSecurityConfigurerAdapter {

    public static void main(String[] args) {
        SpringApplication.run(AuthzApp.class, args);

From source file au.edu.anu.orcid.security.SecurityConfig.java

/**
 * <p>SecurityConfig</p>
 *
 * <p>The Australian National University</p>
 *
 * <p>Configures the methods and restrictions for logging in</p>

From source file fi.helsinki.opintoni.config.LocalSecurityConfiguration.java

@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(securedEnabled = true, prePostEnabled = true)
@Profile({ Constants.SPRING_PROFILE_TEST, Constants.SPRING_PROFILE_LOCAL_DEVELOPMENT,
        Constants.SPRING_PROFILE_DEVELOPMENT })
public class LocalSecurityConfiguration extends WebSecurityConfigurerAdapter {

From source file com.hillert.botanic.config.SecurityConfig.java

/**
 *
 * @author Gunnar Hillert
 * @since 1.0
 *
 */

From source file com.traffitruck.WebSecurityConfig.java

@Configuration
@EnableWebMvcSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

    @Autowired
    PersistentTokenRepository repository;