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 com.vdenotaris.spring.boot.security.saml.web.config.WebSecurityConfig.java

import com.vdenotaris.spring.boot.security.saml.web.core.SAMLUserDetailsServiceImpl;

@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(securedEnabled = true)
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

From source file com.naveen.demo.config.Saml2SSOConfig.java

public class Saml2SSOConfig extends WebSecurityConfigurerAdapter {

    /**
      * Defines the web based security configuration.
      * 
      * @param   http It allows configuring web based security for specific http requests.

From source file org.opentestsystem.ap.iat.config.SecurityConfig.java

@Configuration
@ConditionalOnProperty(value = "security.basic.enabled", havingValue = "true", matchIfMissing = true)
@EnableWebSecurity
@EnableGlobalMethodSecurity(securedEnabled = true)
public class SecurityConfig extends WebSecurityConfigurerAdapter {

From source file it.infn.mw.iam.config.saml.SamlConfig.java

@Configuration
@Order(value = Ordered.LOWEST_PRECEDENCE)
@Profile("saml")
@EnableConfigurationProperties({ IamSamlProperties.class, IamSamlJITAccountProvisioningProperties.class,
        IamProperties.class, ServerProperties.class })
@EnableScheduling