remove constructors (#1398)
This commit is contained in:
parent
f2f8839708
commit
52ef5b3803
@ -26,10 +26,6 @@ public class MultipleEntryPointsSecurityConfig {
|
|||||||
@Order(1)
|
@Order(1)
|
||||||
public static class App1ConfigurationAdapter extends WebSecurityConfigurerAdapter {
|
public static class App1ConfigurationAdapter extends WebSecurityConfigurerAdapter {
|
||||||
|
|
||||||
public App1ConfigurationAdapter() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void configure(HttpSecurity http) throws Exception {
|
protected void configure(HttpSecurity http) throws Exception {
|
||||||
//@formatter:off
|
//@formatter:off
|
||||||
@ -45,10 +41,6 @@ public class MultipleEntryPointsSecurityConfig {
|
|||||||
@Order(2)
|
@Order(2)
|
||||||
public static class App2ConfigurationAdapter extends WebSecurityConfigurerAdapter {
|
public static class App2ConfigurationAdapter extends WebSecurityConfigurerAdapter {
|
||||||
|
|
||||||
public App2ConfigurationAdapter() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void configure(HttpSecurity http) throws Exception {
|
protected void configure(HttpSecurity http) throws Exception {
|
||||||
//@formatter:off
|
//@formatter:off
|
||||||
http.antMatcher("/user/**")
|
http.antMatcher("/user/**")
|
||||||
@ -67,10 +59,6 @@ public class MultipleEntryPointsSecurityConfig {
|
|||||||
@Order(3)
|
@Order(3)
|
||||||
public static class App3ConfigurationAdapter extends WebSecurityConfigurerAdapter {
|
public static class App3ConfigurationAdapter extends WebSecurityConfigurerAdapter {
|
||||||
|
|
||||||
public App3ConfigurationAdapter() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void configure(HttpSecurity http) throws Exception {
|
protected void configure(HttpSecurity http) throws Exception {
|
||||||
http.antMatcher("/guest/**").authorizeRequests().anyRequest().permitAll();
|
http.antMatcher("/guest/**").authorizeRequests().anyRequest().permitAll();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user