Class XXssProtectionServerHttpHeadersWriter
java.lang.Object
org.springframework.security.web.server.header.XXssProtectionServerHttpHeadersWriter
- All Implemented Interfaces:
ServerHttpHeadersWriter
public class XXssProtectionServerHttpHeadersWriter
extends Object
implements ServerHttpHeadersWriter
Add the x-xss-protection header.
- Since:
- 5.0
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
The value of the x-xss-protection header. -
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Sets the value of the X-XSS-PROTECTION header.reactor.core.publisher.Mono<Void>
writeHttpHeaders
(org.springframework.web.server.ServerWebExchange exchange) Write the headers to the response.
-
Field Details
-
X_XSS_PROTECTION
- See Also:
-
-
Constructor Details
-
XXssProtectionServerHttpHeadersWriter
public XXssProtectionServerHttpHeadersWriter()Creates a new instance
-
-
Method Details
-
writeHttpHeaders
public reactor.core.publisher.Mono<Void> writeHttpHeaders(org.springframework.web.server.ServerWebExchange exchange) Description copied from interface:ServerHttpHeadersWriter
Write the headers to the response.- Specified by:
writeHttpHeaders
in interfaceServerHttpHeadersWriter
- Returns:
- A Mono which is returned to the
Supplier
of theReactiveHttpOutputMessage.beforeCommit(Supplier)
.
-
setHeaderValue
Sets the value of the X-XSS-PROTECTION header. Defaults toXXssProtectionServerHttpHeadersWriter.HeaderValue.DISABLED
If
XXssProtectionServerHttpHeadersWriter.HeaderValue.DISABLED
, will specify that X-XSS-Protection is disabled. For example:X-XSS-Protection: 0
If
XXssProtectionServerHttpHeadersWriter.HeaderValue.ENABLED
, will contain a value of 1, but will not specify the mode as blocked. In this instance, any content will be attempted to be fixed. For example:X-XSS-Protection: 1
If
XXssProtectionServerHttpHeadersWriter.HeaderValue.ENABLED_MODE_BLOCK
, will contain a value of 1 and will specify mode as blocked. The content will be replaced with "#". For example:X-XSS-Protection: 1; mode=block
- Parameters:
headerValue
- the new headerValue- Throws:
IllegalArgumentException
- if headerValue is null- Since:
- 5.8
-