public interface io.vertx.ext.web.handler.SessionHandler extends io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.ext.web.handler.SessionHandler
  super_class: java.lang.Object
{
  public static final java.lang.String DEFAULT_SESSION_COOKIE_NAME;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "vertx-web.session"

  public static final java.lang.String DEFAULT_SESSION_COOKIE_PATH;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "/"

  public static final long DEFAULT_SESSION_TIMEOUT;
    descriptor: J
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1800000

  public static final boolean DEFAULT_NAG_HTTPS;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final boolean DEFAULT_COOKIE_HTTP_ONLY_FLAG;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final boolean DEFAULT_COOKIE_SECURE_FLAG;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int DEFAULT_SESSIONID_MIN_LENGTH;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  public static io.vertx.ext.web.handler.SessionHandler create(io.vertx.ext.web.sstore.SessionStore);
    descriptor: (Lio/vertx/ext/web/sstore/SessionStore;)Lio/vertx/ext/web/handler/SessionHandler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=11, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.SessionStore sessionStore
         0: .line 93
            new io.vertx.ext.web.handler.impl.SessionHandlerImpl
            dup
            ldc "vertx-web.session"
            ldc "/"
            ldc 1800000
         1: .line 94
            iconst_1
            iconst_0
            iconst_0
         2: .line 95
            bipush 16
            aload 0 /* sessionStore */
         3: .line 93
            invokespecial io.vertx.ext.web.handler.impl.SessionHandlerImpl.<init>:(Ljava/lang/String;Ljava/lang/String;JZZZILio/vertx/ext/web/sstore/SessionStore;)V
            areturn
        end local 0 // io.vertx.ext.web.sstore.SessionStore sessionStore
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0  sessionStore  Lio/vertx/ext/web/sstore/SessionStore;
    MethodParameters:
              Name  Flags
      sessionStore  

  public abstract io.vertx.ext.web.handler.SessionHandler setSessionTimeout(long);
    descriptor: (J)Lio/vertx/ext/web/handler/SessionHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      timeout  

  public abstract io.vertx.ext.web.handler.SessionHandler setNagHttps(boolean);
    descriptor: (Z)Lio/vertx/ext/web/handler/SessionHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      nag   

  public abstract io.vertx.ext.web.handler.SessionHandler setCookieSecureFlag(boolean);
    descriptor: (Z)Lio/vertx/ext/web/handler/SessionHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
        Name  Flags
      secure  

  public abstract io.vertx.ext.web.handler.SessionHandler setCookieHttpOnlyFlag(boolean);
    descriptor: (Z)Lio/vertx/ext/web/handler/SessionHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
          Name  Flags
      httpOnly  

  public abstract io.vertx.ext.web.handler.SessionHandler setSessionCookieName(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/handler/SessionHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                   Name  Flags
      sessionCookieName  

  public abstract io.vertx.ext.web.handler.SessionHandler setSessionCookiePath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/handler/SessionHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                   Name  Flags
      sessionCookiePath  

  public abstract io.vertx.ext.web.handler.SessionHandler setMinLength(int);
    descriptor: (I)Lio/vertx/ext/web/handler/SessionHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
           Name  Flags
      minLength  

  public abstract io.vertx.ext.web.handler.SessionHandler setAuthProvider(io.vertx.ext.auth.AuthProvider);
    descriptor: (Lio/vertx/ext/auth/AuthProvider;)Lio/vertx/ext/web/handler/SessionHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
              Name  Flags
      authProvider  
}
Signature: Ljava/lang/Object;Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
SourceFile: "SessionHandler.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()