java.lang.Object
io.vertx.mutiny.ext.web.handler.CSPHandler
All Implemented Interfaces:
io.smallrye.mutiny.vertx.MutinyDelegate, io.vertx.core.Handler<RoutingContext>, SecurityPolicyHandler, Consumer<RoutingContext>

public class CSPHandler extends Object implements io.smallrye.mutiny.vertx.MutinyDelegate, SecurityPolicyHandler, io.vertx.core.Handler<RoutingContext>, Consumer<RoutingContext>
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks, including Cross Site Scripting (XSS) and data injection attacks. These attacks are used for everything from data theft to site defacement to distribution of malware. CSP is designed to be fully backward compatible. Browsers that don't support it still work with servers that implement it, and vice-versa: browsers that don't support CSP simply ignore it, functioning as usual, defaulting to the standard same-origin policy for web content. If the site doesn't offer the CSP header, browsers likewise use the standard same-origin policy.

NOTE: This class has been automatically generated from the original non Mutiny-ified interface using Vert.x codegen.

  • Field Details

    • __TYPE_ARG

      public static final io.smallrye.mutiny.vertx.TypeArg<CSPHandler> __TYPE_ARG
  • Constructor Details

    • CSPHandler

      public CSPHandler(io.vertx.ext.web.handler.CSPHandler delegate)
    • CSPHandler

      public CSPHandler(Object delegate)
  • Method Details

    • getDelegate

      public io.vertx.ext.web.handler.CSPHandler getDelegate()
      Specified by:
      getDelegate in interface io.smallrye.mutiny.vertx.MutinyDelegate
      Specified by:
      getDelegate in interface SecurityPolicyHandler
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • handle

      public void handle(RoutingContext arg0)
      Specified by:
      handle in interface io.vertx.core.Handler<RoutingContext>
      Specified by:
      handle in interface SecurityPolicyHandler
    • create

      public static CSPHandler create()
      Returns:
      a new CSP handler.
    • setDirective

      public CSPHandler setDirective(String name, String value)
      Parameters:
      name - the directive name
      value - the directive value.
      Returns:
      fluent self
    • addDirective

      public CSPHandler addDirective(String name, String value)
      Parameters:
      name - the directive name
      value - the directive value.
      Returns:
      fluent self
    • setReportOnly

      public CSPHandler setReportOnly(boolean reportOnly)
      Parameters:
      reportOnly - enable report only
      Returns:
      fluent self.
    • accept

      public void accept(RoutingContext item)
      Specified by:
      accept in interface Consumer<RoutingContext>
      Specified by:
      accept in interface SecurityPolicyHandler
    • newInstance

      public static CSPHandler newInstance(io.vertx.ext.web.handler.CSPHandler arg)