public class io.vertx.core.http.impl.CookieImpl implements io.vertx.core.http.impl.ServerCookie
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.http.impl.CookieImpl
  super_class: java.lang.Object
{
  private final io.netty.handler.codec.http.cookie.Cookie nettyCookie;
    descriptor: Lio/netty/handler/codec/http/cookie/Cookie;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean changed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean fromUserAgent;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.http.CookieSameSite sameSite;
    descriptor: Lio/vertx/core/http/CookieSameSite;
    flags: (0x0002) ACC_PRIVATE

  static java.util.Map<java.lang.String, io.vertx.core.http.impl.ServerCookie> extractCookies(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Ljava/util/Map;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // java.lang.CharSequence cookieHeader
         0: .line 34
            aload 0 /* cookieHeader */
            ifnull 9
         1: .line 35
            getstatic io.netty.handler.codec.http.cookie.ServerCookieDecoder.STRICT:Lio/netty/handler/codec/http/cookie/ServerCookieDecoder;
            aload 0 /* cookieHeader */
            invokeinterface java.lang.CharSequence.toString:()Ljava/lang/String;
            invokevirtual io.netty.handler.codec.http.cookie.ServerCookieDecoder.decode:(Ljava/lang/String;)Ljava/util/Set;
            astore 1 /* nettyCookies */
        start local 1 // java.util.Set nettyCookies
         2: .line 36
            new java.util.HashMap
            dup
            aload 1 /* nettyCookies */
            invokeinterface java.util.Set.size:()I
            invokespecial java.util.HashMap.<init>:(I)V
            astore 2 /* cookies */
        start local 2 // java.util.Map cookies
         3: .line 37
            aload 1 /* nettyCookies */
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 7
      StackMap locals: java.lang.CharSequence java.util.Set java.util.Map top java.util.Iterator
      StackMap stack:
         4: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.netty.handler.codec.http.cookie.Cookie
            astore 3 /* cookie */
        start local 3 // io.netty.handler.codec.http.cookie.Cookie cookie
         5: .line 38
            new io.vertx.core.http.impl.CookieImpl
            dup
            aload 3 /* cookie */
            invokespecial io.vertx.core.http.impl.CookieImpl.<init>:(Lio/netty/handler/codec/http/cookie/Cookie;)V
            astore 5 /* ourCookie */
        start local 5 // io.vertx.core.http.impl.ServerCookie ourCookie
         6: .line 39
            aload 2 /* cookies */
            aload 5 /* ourCookie */
            invokeinterface io.vertx.core.http.impl.ServerCookie.getName:()Ljava/lang/String;
            aload 5 /* ourCookie */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 5 // io.vertx.core.http.impl.ServerCookie ourCookie
        end local 3 // io.netty.handler.codec.http.cookie.Cookie cookie
         7: .line 37
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         8: .line 41
            aload 2 /* cookies */
            areturn
        end local 2 // java.util.Map cookies
        end local 1 // java.util.Set nettyCookies
         9: .line 43
      StackMap locals: java.lang.CharSequence
      StackMap stack:
            new java.util.HashMap
            dup
            iconst_4
            invokespecial java.util.HashMap.<init>:(I)V
            areturn
        end local 0 // java.lang.CharSequence cookieHeader
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   10     0  cookieHeader  Ljava/lang/CharSequence;
            2    9     1  nettyCookies  Ljava/util/Set<Lio/netty/handler/codec/http/cookie/Cookie;>;
            3    9     2       cookies  Ljava/util/Map<Ljava/lang/String;Lio/vertx/core/http/impl/ServerCookie;>;
            5    7     3        cookie  Lio/netty/handler/codec/http/cookie/Cookie;
            6    7     5     ourCookie  Lio/vertx/core/http/impl/ServerCookie;
    Signature: (Ljava/lang/CharSequence;)Ljava/util/Map<Ljava/lang/String;Lio/vertx/core/http/impl/ServerCookie;>;
    MethodParameters:
              Name  Flags
      cookieHeader  

  static io.vertx.core.http.Cookie removeCookie(java.util.Map<java.lang.String, io.vertx.core.http.impl.ServerCookie>, java.lang.String, boolean);
    descriptor: (Ljava/util/Map;Ljava/lang/String;Z)Lio/vertx/core/http/Cookie;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // java.util.Map cookieMap
        start local 1 // java.lang.String name
        start local 2 // boolean invalidate
         0: .line 49
            aload 0 /* cookieMap */
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.core.http.impl.ServerCookie
            astore 3 /* cookie */
        start local 3 // io.vertx.core.http.impl.ServerCookie cookie
         1: .line 50
            aload 3 /* cookie */
            ifnull 7
         2: .line 51
            iload 2 /* invalidate */
            ifeq 6
            aload 3 /* cookie */
            invokeinterface io.vertx.core.http.impl.ServerCookie.isFromUserAgent:()Z
            ifeq 6
         3: .line 55
            aload 3 /* cookie */
            lconst_0
            invokeinterface io.vertx.core.http.impl.ServerCookie.setMaxAge:(J)Lio/vertx/core/http/Cookie;
            pop
         4: .line 57
            aload 3 /* cookie */
            ldc ""
            invokeinterface io.vertx.core.http.impl.ServerCookie.setValue:(Ljava/lang/String;)Lio/vertx/core/http/Cookie;
            pop
         5: .line 58
            goto 7
         6: .line 60
      StackMap locals: io.vertx.core.http.impl.ServerCookie
      StackMap stack:
            aload 0 /* cookieMap */
            aload 1 /* name */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         7: .line 63
      StackMap locals:
      StackMap stack:
            aload 3 /* cookie */
            areturn
        end local 3 // io.vertx.core.http.impl.ServerCookie cookie
        end local 2 // boolean invalidate
        end local 1 // java.lang.String name
        end local 0 // java.util.Map cookieMap
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0   cookieMap  Ljava/util/Map<Ljava/lang/String;Lio/vertx/core/http/impl/ServerCookie;>;
            0    8     1        name  Ljava/lang/String;
            0    8     2  invalidate  Z
            1    8     3      cookie  Lio/vertx/core/http/impl/ServerCookie;
    Signature: (Ljava/util/Map<Ljava/lang/String;Lio/vertx/core/http/impl/ServerCookie;>;Ljava/lang/String;Z)Lio/vertx/core/http/Cookie;
    MethodParameters:
            Name  Flags
      cookieMap   
      name        
      invalidate  

  public void <init>(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.CookieImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
         0: .line 72
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 73
            aload 0 /* this */
            new io.netty.handler.codec.http.cookie.DefaultCookie
            dup
            aload 1 /* name */
            aload 2 /* value */
            invokespecial io.netty.handler.codec.http.cookie.DefaultCookie.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            putfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
         2: .line 74
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.CookieImpl.changed:Z
         3: .line 75
            return
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lio/vertx/core/http/impl/CookieImpl;
            0    4     1   name  Ljava/lang/String;
            0    4     2  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      name   
      value  

  public void <init>(io.netty.handler.codec.http.cookie.Cookie);
    descriptor: (Lio/netty/handler/codec/http/cookie/Cookie;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.CookieImpl this
        start local 1 // io.netty.handler.codec.http.cookie.Cookie nettyCookie
         0: .line 77
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 78
            aload 0 /* this */
            aload 1 /* nettyCookie */
            putfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
         2: .line 79
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.CookieImpl.fromUserAgent:Z
         3: .line 80
            return
        end local 1 // io.netty.handler.codec.http.cookie.Cookie nettyCookie
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lio/vertx/core/http/impl/CookieImpl;
            0    4     1  nettyCookie  Lio/netty/handler/codec/http/cookie/Cookie;
    MethodParameters:
             Name  Flags
      nettyCookie  

  public java.lang.String getValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.CookieImpl this
         0: .line 84
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.value:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/CookieImpl;

  public io.vertx.core.http.Cookie setValue(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.CookieImpl this
        start local 1 // java.lang.String value
         0: .line 89
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            aload 1 /* value */
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.setValue:(Ljava/lang/String;)V
         1: .line 90
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.CookieImpl.changed:Z
         2: .line 91
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String value
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/core/http/impl/CookieImpl;
            0    3     1  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      value  final

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.CookieImpl this
         0: .line 96
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.name:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/CookieImpl;

  public io.vertx.core.http.Cookie setDomain(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.CookieImpl this
        start local 1 // java.lang.String domain
         0: .line 101
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            aload 1 /* domain */
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.setDomain:(Ljava/lang/String;)V
         1: .line 102
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.CookieImpl.changed:Z
         2: .line 103
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String domain
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/http/impl/CookieImpl;
            0    3     1  domain  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      domain  final

  public java.lang.String getDomain();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.CookieImpl this
         0: .line 108
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.domain:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/CookieImpl;

  public io.vertx.core.http.Cookie setPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.CookieImpl this
        start local 1 // java.lang.String path
         0: .line 113
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            aload 1 /* path */
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.setPath:(Ljava/lang/String;)V
         1: .line 114
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.CookieImpl.changed:Z
         2: .line 115
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String path
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/CookieImpl;
            0    3     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  final

  public java.lang.String getPath();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.CookieImpl this
         0: .line 120
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.path:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/CookieImpl;

  public io.vertx.core.http.Cookie setMaxAge(long);
    descriptor: (J)Lio/vertx/core/http/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.CookieImpl this
        start local 1 // long maxAge
         0: .line 125
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            lload 1 /* maxAge */
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.setMaxAge:(J)V
         1: .line 126
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.CookieImpl.changed:Z
         2: .line 127
            aload 0 /* this */
            areturn
        end local 1 // long maxAge
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/http/impl/CookieImpl;
            0    3     1  maxAge  J
    MethodParameters:
        Name  Flags
      maxAge  final

  public io.vertx.core.http.Cookie setSecure(boolean);
    descriptor: (Z)Lio/vertx/core/http/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.CookieImpl this
        start local 1 // boolean secure
         0: .line 132
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            iload 1 /* secure */
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.setSecure:(Z)V
         1: .line 133
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.CookieImpl.changed:Z
         2: .line 134
            aload 0 /* this */
            areturn
        end local 1 // boolean secure
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/http/impl/CookieImpl;
            0    3     1  secure  Z
    MethodParameters:
        Name  Flags
      secure  final

  public boolean isSecure();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.CookieImpl this
         0: .line 139
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.isSecure:()Z
            ireturn
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/CookieImpl;

  public io.vertx.core.http.Cookie setHttpOnly(boolean);
    descriptor: (Z)Lio/vertx/core/http/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.CookieImpl this
        start local 1 // boolean httpOnly
         0: .line 144
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            iload 1 /* httpOnly */
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.setHttpOnly:(Z)V
         1: .line 145
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.CookieImpl.changed:Z
         2: .line 146
            aload 0 /* this */
            areturn
        end local 1 // boolean httpOnly
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/vertx/core/http/impl/CookieImpl;
            0    3     1  httpOnly  Z
    MethodParameters:
          Name  Flags
      httpOnly  final

  public boolean isHttpOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.CookieImpl this
         0: .line 151
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            invokeinterface io.netty.handler.codec.http.cookie.Cookie.isHttpOnly:()Z
            ireturn
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/CookieImpl;

  public io.vertx.core.http.Cookie setSameSite(io.vertx.core.http.CookieSameSite);
    descriptor: (Lio/vertx/core/http/CookieSameSite;)Lio/vertx/core/http/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.CookieImpl this
        start local 1 // io.vertx.core.http.CookieSameSite sameSite
         0: .line 156
            aload 0 /* this */
            aload 1 /* sameSite */
            putfield io.vertx.core.http.impl.CookieImpl.sameSite:Lio/vertx/core/http/CookieSameSite;
         1: .line 157
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.CookieImpl.changed:Z
         2: .line 158
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.http.CookieSameSite sameSite
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/vertx/core/http/impl/CookieImpl;
            0    3     1  sameSite  Lio/vertx/core/http/CookieSameSite;
    MethodParameters:
          Name  Flags
      sameSite  final

  public io.vertx.core.http.CookieSameSite getSameSite();
    descriptor: ()Lio/vertx/core/http/CookieSameSite;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.CookieImpl this
         0: .line 163
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.sameSite:Lio/vertx/core/http/CookieSameSite;
            areturn
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/CookieImpl;

  public java.lang.String encode();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.CookieImpl this
         0: .line 168
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.sameSite:Lio/vertx/core/http/CookieSameSite;
            ifnull 2
         1: .line 169
            new java.lang.StringBuilder
            dup
            getstatic io.netty.handler.codec.http.cookie.ServerCookieEncoder.STRICT:Lio/netty/handler/codec/http/cookie/ServerCookieEncoder;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            invokevirtual io.netty.handler.codec.http.cookie.ServerCookieEncoder.encode:(Lio/netty/handler/codec/http/cookie/Cookie;)Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "; SameSite="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.sameSite:Lio/vertx/core/http/CookieSameSite;
            invokevirtual io.vertx.core.http.CookieSameSite.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
         2: .line 171
      StackMap locals:
      StackMap stack:
            getstatic io.netty.handler.codec.http.cookie.ServerCookieEncoder.STRICT:Lio/netty/handler/codec/http/cookie/ServerCookieEncoder;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.nettyCookie:Lio/netty/handler/codec/http/cookie/Cookie;
            invokevirtual io.netty.handler.codec.http.cookie.ServerCookieEncoder.encode:(Lio/netty/handler/codec/http/cookie/Cookie;)Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/CookieImpl;

  public boolean isChanged();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.CookieImpl this
         0: .line 176
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.changed:Z
            ireturn
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/CookieImpl;

  public void setChanged(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.CookieImpl this
        start local 1 // boolean changed
         0: .line 180
            aload 0 /* this */
            iload 1 /* changed */
            putfield io.vertx.core.http.impl.CookieImpl.changed:Z
         1: .line 181
            return
        end local 1 // boolean changed
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/CookieImpl;
            0    2     1  changed  Z
    MethodParameters:
         Name  Flags
      changed  

  public boolean isFromUserAgent();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.CookieImpl this
         0: .line 184
            aload 0 /* this */
            getfield io.vertx.core.http.impl.CookieImpl.fromUserAgent:Z
            ireturn
        end local 0 // io.vertx.core.http.impl.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/CookieImpl;
}
SourceFile: "CookieImpl.java"