public interface io.vertx.ext.web.Cookie
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.ext.web.Cookie
  super_class: java.lang.Object
{
  public static io.vertx.ext.web.Cookie cookie(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/Cookie;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.String name
        start local 1 // java.lang.String value
         0: .line 42
            new io.vertx.ext.web.impl.CookieImpl
            dup
            aload 0 /* name */
            aload 1 /* value */
            invokespecial io.vertx.ext.web.impl.CookieImpl.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            areturn
        end local 1 // java.lang.String value
        end local 0 // java.lang.String name
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   name  Ljava/lang/String;
            0    1     1  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      name   
      value  

  public static io.vertx.ext.web.Cookie cookie(io.netty.handler.codec.http.cookie.Cookie);
    descriptor: (Lio/netty/handler/codec/http/cookie/Cookie;)Lio/vertx/ext/web/Cookie;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http.cookie.Cookie nettyCookie
         0: .line 52
            new io.vertx.ext.web.impl.CookieImpl
            dup
            aload 0 /* nettyCookie */
            invokespecial io.vertx.ext.web.impl.CookieImpl.<init>:(Lio/netty/handler/codec/http/cookie/Cookie;)V
            areturn
        end local 0 // io.netty.handler.codec.http.cookie.Cookie nettyCookie
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0  nettyCookie  Lio/netty/handler/codec/http/cookie/Cookie;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()
    MethodParameters:
             Name  Flags
      nettyCookie  

  public abstract java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String getValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

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

  public abstract io.vertx.ext.web.Cookie setDomain(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/Cookie;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
        Name  Flags
      domain  

  public abstract java.lang.String getDomain();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()

  public abstract io.vertx.ext.web.Cookie setPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/Cookie;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
      Name  Flags
      path  

  public abstract java.lang.String getPath();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()

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

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

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

  public abstract java.lang.String encode();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isChanged();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void setChanged(boolean);
    descriptor: (Z)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
         Name  Flags
      changed  

  public abstract boolean isFromUserAgent();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
}
SourceFile: "Cookie.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()