Consistent configureGlobal in samples

This commit is contained in:
Rob Winch 2014-12-10 17:02:22 -06:00
parent 8b1f5f7cd7
commit a36c4bcb04
7 changed files with 7 additions and 7 deletions

View File

@ -12,7 +12,7 @@ import org.springframework.security.config.annotation.web.configuration.EnableWe
@EnableGlobalMethodSecurity(prePostEnabled=true) @EnableGlobalMethodSecurity(prePostEnabled=true)
public class SecurityConfig extends WebSecurityConfigurerAdapter { public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired @Autowired
public void registerGlobalAuthentication( public void configureGlobal(
AuthenticationManagerBuilder auth) throws Exception { AuthenticationManagerBuilder auth) throws Exception {
auth auth
.inMemoryAuthentication() .inMemoryAuthentication()

View File

@ -26,7 +26,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
} }
@Autowired @Autowired
public void registerGlobalAuthentication( public void configureGlobal(
AuthenticationManagerBuilder auth) throws Exception { AuthenticationManagerBuilder auth) throws Exception {
auth auth
.inMemoryAuthentication() .inMemoryAuthentication()

View File

@ -10,7 +10,7 @@ import org.springframework.security.config.annotation.web.configuration.EnableWe
public class SecurityConfig { public class SecurityConfig {
@Autowired @Autowired
public void registerGlobalAuthentication( public void configureGlobal(
AuthenticationManagerBuilder auth) throws Exception { AuthenticationManagerBuilder auth) throws Exception {
auth auth
.inMemoryAuthentication() .inMemoryAuthentication()

View File

@ -9,7 +9,7 @@ import org.springframework.security.config.annotation.web.configuration.EnableWe
public class SecurityConfig { public class SecurityConfig {
@Autowired @Autowired
public void registerGlobalAuthentication( public void configureGlobal(
AuthenticationManagerBuilder auth) throws Exception { AuthenticationManagerBuilder auth) throws Exception {
auth auth
.inMemoryAuthentication() .inMemoryAuthentication()

View File

@ -10,7 +10,7 @@ import org.springframework.security.config.annotation.web.configuration.EnableWe
public class SecurityConfig { public class SecurityConfig {
@Autowired @Autowired
public void registerGlobalAuthentication( public void configureGlobal(
AuthenticationManagerBuilder auth) throws Exception { AuthenticationManagerBuilder auth) throws Exception {
auth auth
.inMemoryAuthentication() .inMemoryAuthentication()

View File

@ -9,7 +9,7 @@ import org.springframework.security.config.annotation.web.configuration.EnableWe
@EnableWebSecurity @EnableWebSecurity
public class SecurityConfig { public class SecurityConfig {
@Autowired @Autowired
public void registerGlobalAuthentication( public void configureGlobal(
AuthenticationManagerBuilder auth) throws Exception { AuthenticationManagerBuilder auth) throws Exception {
auth auth
.ldapAuthentication() .ldapAuthentication()

View File

@ -11,7 +11,7 @@ import org.springframework.security.config.annotation.web.configuration.EnableWe
public class SecurityConfig extends WebSecurityConfigurerAdapter { public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired @Autowired
public void registerGlobalAuthentication( public void configureGlobal(
AuthenticationManagerBuilder auth) throws Exception { AuthenticationManagerBuilder auth) throws Exception {
auth auth
.inMemoryAuthentication() .inMemoryAuthentication()