Enum Class XFrameOptionsServerHttpHeadersWriter.Mode
java.lang.Object
java.lang.Enum<XFrameOptionsServerHttpHeadersWriter.Mode>
org.springframework.security.web.server.header.XFrameOptionsServerHttpHeadersWriter.Mode
- All Implemented Interfaces:
Serializable
,Comparable<XFrameOptionsServerHttpHeadersWriter.Mode>
,Constable
- Enclosing class:
- XFrameOptionsServerHttpHeadersWriter
public static enum XFrameOptionsServerHttpHeadersWriter.Mode
extends Enum<XFrameOptionsServerHttpHeadersWriter.Mode>
The X-Frame-Options values. There is no support for ALLOW-FROM because not all
browsers support it. Consider using X-Frame-Options with
Content-Security-Policy frame-ancestors.
- Since:
- 5.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA browser receiving content with this header field MUST NOT display this content in any frame.A browser receiving content with this header field MUST NOT display this content in any frame from a page of different origin than the content itself. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DENY
A browser receiving content with this header field MUST NOT display this content in any frame. -
SAMEORIGIN
A browser receiving content with this header field MUST NOT display this content in any frame from a page of different origin than the content itself. If a browser or plugin cannot reliably determine whether or not the origin of the content and the frame are the same, this MUST be treated as "DENY".
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-