Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration of various Groovy classes to Java #1663

Merged
merged 22 commits into from
Jun 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
465d1b4
refactor(core): Rewrite some Groovy as Java
jvz Jun 8, 2023
86ee268
refactor(core): Rewrite AuthConfig to Java
jvz Jun 8, 2023
cad914e
refactor(core): Rewrite CorsFilter in Java
jvz Jun 8, 2023
60e0ad6
refactor(core): Rewrite GateOriginValidator in Java
jvz Jun 8, 2023
a0f7c67
refactor(core): Rewrite Slf4jRetrofitLogger in Java
jvz Jun 8, 2023
2530a08
refactor(core): Rewrite Headers in Java
jvz Jun 8, 2023
a9b7836
refactor(core): Rewrite AnonymousConfig in Java
jvz Jun 8, 2023
de69fc4
fix(web): Use Jackson2ObjectMapperBuilder in GateConfig
jvz Jun 8, 2023
406dbc8
refactor(web): Fix raw type usage
jvz Jun 8, 2023
3bfd694
refactor(x509): Convert X509Config to Java
jvz Jun 8, 2023
7c5eca8
refactor(x509): Convert OidRolesExtractor to Java
jvz Jun 8, 2023
c05f652
chore(core): Revert copyright notice to original
jvz Jun 8, 2023
8f6dee2
refactor(core): Move Java files to src/main/java
jvz Jun 15, 2023
98f442a
chore(core): Add removed comments back
jvz Jun 15, 2023
a7b8fdb
fix(core): Add null check to PermissionRevokingLogoutSuccessHandler
jvz Jun 15, 2023
b05726e
refactor(x509): Move Java classes into `src/main/java`
jvz Jun 16, 2023
ad0cd26
refactor(saml): Rewrite SAML Groovy code in Java
jvz Jun 27, 2023
a94756c
refactor(core): Move Java classes to src/main/java
jvz Jun 28, 2023
914992a
refactor(web): Centralize configuration properties enablement
jvz Jun 28, 2023
6769b50
chore(x509): Use more appropriate property injection
jvz Jun 28, 2023
ddc6010
refactor(core): Rewrite PermissionService in Java
jvz Jun 28, 2023
4ebb0b9
Merge branch 'master' into groovy2java
jvz Jun 29, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.builders.WebSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint;
Expand Down Expand Up @@ -62,9 +61,4 @@ protected void configure(HttpSecurity http) throws Exception {
.authenticationEntryPoint(new LoginUrlAuthenticationEntryPoint("/login"));
authConfig.configure(http);
}

@Override
public void configure(WebSecurity web) throws Exception {
authConfig.configure(web);
}
}

This file was deleted.

This file was deleted.

This file was deleted.

Loading