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 final boolean DEFAULT_LAZY_SESSION;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  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=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.SessionStore sessionStore
         0: .line 100
            new io.vertx.ext.web.handler.impl.SessionHandlerImpl
            dup
            aload 0 /* sessionStore */
            invokespecial io.vertx.ext.web.handler.impl.SessionHandlerImpl.<init>:(Lio/vertx/ext/web/sstore/SessionStore;)V
            areturn
        end local 0 // io.vertx.ext.web.sstore.SessionStore sessionStore
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     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 setCookieSameSite(io.vertx.core.http.CookieSameSite);
    descriptor: (Lio/vertx/core/http/CookieSameSite;)Lio/vertx/ext/web/handler/SessionHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
        Name  Flags
      policy  

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

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

  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()
      java.lang.Deprecated()
    MethodParameters:
              Name  Flags
      authProvider  

  public abstract io.vertx.ext.web.handler.SessionHandler flush(io.vertx.ext.web.RoutingContext, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/ext/web/RoutingContext;Lio/vertx/core/Handler;)Lio/vertx/ext/web/handler/SessionHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/ext/web/RoutingContext;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/ext/web/handler/SessionHandler;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      ctx      
      handler  

  public io.vertx.core.Future<java.lang.Void> flush(io.vertx.ext.web.RoutingContext);
    descriptor: (Lio/vertx/ext/web/RoutingContext;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.handler.SessionHandler this
        start local 1 // io.vertx.ext.web.RoutingContext ctx
         0: .line 227
            aload 1 /* ctx */
            invokeinterface io.vertx.ext.web.RoutingContext.vertx:()Lio/vertx/core/Vertx;
            checkcast io.vertx.core.impl.VertxInternal
            invokeinterface io.vertx.core.impl.VertxInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 228
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* promise */
            invokeinterface io.vertx.ext.web.handler.SessionHandler.flush:(Lio/vertx/ext/web/RoutingContext;Lio/vertx/core/Handler;)Lio/vertx/ext/web/handler/SessionHandler;
            pop
         2: .line 229
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise promise
        end local 1 // io.vertx.ext.web.RoutingContext ctx
        end local 0 // io.vertx.ext.web.handler.SessionHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/ext/web/handler/SessionHandler;
            0    3     1      ctx  Lio/vertx/ext/web/RoutingContext;
            1    3     2  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Lio/vertx/ext/web/RoutingContext;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
      Name  Flags
      ctx   

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