Class FeaturePolicyServerHttpHeadersWriter
- java.lang.Object
-
- org.springframework.security.web.server.header.FeaturePolicyServerHttpHeadersWriter
-
- All Implemented Interfaces:
ServerHttpHeadersWriter
public final class FeaturePolicyServerHttpHeadersWriter extends java.lang.Object implements ServerHttpHeadersWriter
Writes theFeature-Policy
response header with configured policy directives.- Since:
- 5.1
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
FEATURE_POLICY
-
Constructor Summary
Constructors Constructor Description FeaturePolicyServerHttpHeadersWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setPolicyDirectives(java.lang.String policyDirectives)
Set the policy directive(s) to be used in the response header.reactor.core.publisher.Mono<java.lang.Void>
writeHttpHeaders(org.springframework.web.server.ServerWebExchange exchange)
Write the headers to the response.
-
-
-
Field Detail
-
FEATURE_POLICY
public static final java.lang.String FEATURE_POLICY
- See Also:
- Constant Field Values
-
-
Method Detail
-
writeHttpHeaders
public reactor.core.publisher.Mono<java.lang.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)
.
-
setPolicyDirectives
public void setPolicyDirectives(java.lang.String policyDirectives)
Set the policy directive(s) to be used in the response header.- Parameters:
policyDirectives
- the policy directive(s)- Throws:
java.lang.IllegalArgumentException
- if policyDirectives isnull
or empty
-
-