1
0
mirror of synced 2026-08-04 09:17:02 +00:00

SEC-3120: Remove .and() from httpStrictTransportSecurity() doc

This commit is contained in:
Rob Winch
2015-10-30 09:11:47 -05:00
parent 4144de9376
commit c93d6bc823
+5 -7
View File
@@ -3546,17 +3546,15 @@ You can easily do this with the following Java Configuration:
----
@EnableWebSecurity
public class WebSecurityConfig extends
WebSecurityConfigurerAdapter {
WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http
// ...
.headers()
.frameOptions()
.sameOrigin()
.and()
.httpStrictTransportSecurity().disable();
// ...
.headers()
.frameOptions().sameOrigin()
.httpStrictTransportSecurity().disable();
}
}
----