Package io.vertx.mutiny.ext.web.handler
Class XFrameHandler
- java.lang.Object
-
- io.vertx.mutiny.ext.web.handler.XFrameHandler
-
- All Implemented Interfaces:
io.vertx.core.Handler<RoutingContext>
,Consumer<RoutingContext>
public class XFrameHandler extends Object implements io.vertx.core.Handler<RoutingContext>, Consumer<RoutingContext>
The X-Frame-Options HTTP response header can be used to indicate whether or not a browser should be allowed to render a page in a,
,
or
. Sites can use this to avoid click-jacking attacks, by ensuring that their content is not embedded into other sites. The added security is provided only if the user accessing the document is using a browser that supports
X-Frame-Options
. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<XFrameHandler>
__TYPE_ARG
static String
DENY
The page cannot be displayed in a frame, regardless of the site attempting to do so.static String
SAMEORIGIN
The page can only be displayed in a frame on the same origin as the page itself.
-
Constructor Summary
Constructors Constructor Description XFrameHandler(io.vertx.ext.web.handler.XFrameHandler delegate)
XFrameHandler(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(RoutingContext item)
static XFrameHandler
create(String action)
boolean
equals(Object o)
io.vertx.ext.web.handler.XFrameHandler
getDelegate()
void
handle(RoutingContext arg0)
int
hashCode()
static XFrameHandler
newInstance(io.vertx.ext.web.handler.XFrameHandler arg)
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<XFrameHandler> __TYPE_ARG
-
DENY
public static final String DENY
The page cannot be displayed in a frame, regardless of the site attempting to do so.- See Also:
- Constant Field Values
-
SAMEORIGIN
public static final String SAMEORIGIN
The page can only be displayed in a frame on the same origin as the page itself. The spec leaves it up to browser vendors to decide whether this option applies to the top level, the parent, or the whole chain, although it is argued that the option is not very useful unless all ancestors are also in the same origin.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
XFrameHandler
public XFrameHandler(io.vertx.ext.web.handler.XFrameHandler delegate)
-
XFrameHandler
public XFrameHandler(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.web.handler.XFrameHandler getDelegate()
-
handle
public void handle(RoutingContext arg0)
- Specified by:
handle
in interfaceio.vertx.core.Handler<RoutingContext>
-
create
public static XFrameHandler create(String action)
- Parameters:
action
- a string value eitherDENY
orSAMEORIGIN
.- Returns:
- the handler
-
accept
public void accept(RoutingContext item)
- Specified by:
accept
in interfaceConsumer<RoutingContext>
-
newInstance
public static XFrameHandler newInstance(io.vertx.ext.web.handler.XFrameHandler arg)
-
-