public class io.undertow.server.handlers.CookieImpl implements io.undertow.server.handlers.Cookie
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.undertow.server.handlers.CookieImpl
  super_class: java.lang.Object
{
  private final java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.lang.String value;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String path;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String domain;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Integer maxAge;
    descriptor: Ljava/lang/Integer;
    flags: (0x0002) ACC_PRIVATE

  private java.util.Date expires;
    descriptor: Ljava/util/Date;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  private int version;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String comment;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

  private java.lang.String sameSiteMode;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
         0: .line 46
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.handlers.CookieImpl.version:I
         2: .line 47
            aload 0 /* this */
            aload 1 /* name */
            putfield io.undertow.server.handlers.CookieImpl.name:Ljava/lang/String;
         3: .line 48
            aload 0 /* this */
            aload 2 /* value */
            putfield io.undertow.server.handlers.CookieImpl.value:Ljava/lang/String;
         4: .line 49
            return
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/undertow/server/handlers/CookieImpl;
            0    5     1   name  Ljava/lang/String;
            0    5     2  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      name   final
      value  final

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // java.lang.String name
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.handlers.CookieImpl.version:I
         2: .line 52
            aload 0 /* this */
            aload 1 /* name */
            putfield io.undertow.server.handlers.CookieImpl.name:Ljava/lang/String;
         3: .line 53
            return
        end local 1 // java.lang.String name
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/undertow/server/handlers/CookieImpl;
            0    4     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  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.undertow.server.handlers.CookieImpl this
         0: .line 56
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.name:Ljava/lang/String;
            areturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  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.undertow.server.handlers.CookieImpl this
         0: .line 60
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.value:Ljava/lang/String;
            areturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.CookieImpl setValue(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/server/handlers/CookieImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // java.lang.String value
         0: .line 64
            aload 0 /* this */
            aload 1 /* value */
            putfield io.undertow.server.handlers.CookieImpl.value:Ljava/lang/String;
         1: .line 65
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String value
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/undertow/server/handlers/CookieImpl;
            0    2     1  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      value  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.undertow.server.handlers.CookieImpl this
         0: .line 69
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.path:Ljava/lang/String;
            areturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.CookieImpl setPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/server/handlers/CookieImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // java.lang.String path
         0: .line 73
            aload 0 /* this */
            aload 1 /* path */
            putfield io.undertow.server.handlers.CookieImpl.path:Ljava/lang/String;
         1: .line 74
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String path
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/server/handlers/CookieImpl;
            0    2     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  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.undertow.server.handlers.CookieImpl this
         0: .line 78
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.domain:Ljava/lang/String;
            areturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.CookieImpl setDomain(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/server/handlers/CookieImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // java.lang.String domain
         0: .line 82
            aload 0 /* this */
            aload 1 /* domain */
            putfield io.undertow.server.handlers.CookieImpl.domain:Ljava/lang/String;
         1: .line 83
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String domain
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/undertow/server/handlers/CookieImpl;
            0    2     1  domain  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      domain  final

  public java.lang.Integer getMaxAge();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.handlers.CookieImpl this
         0: .line 87
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.maxAge:Ljava/lang/Integer;
            areturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.CookieImpl setMaxAge(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)Lio/undertow/server/handlers/CookieImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // java.lang.Integer maxAge
         0: .line 91
            aload 0 /* this */
            aload 1 /* maxAge */
            putfield io.undertow.server.handlers.CookieImpl.maxAge:Ljava/lang/Integer;
         1: .line 92
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Integer maxAge
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/undertow/server/handlers/CookieImpl;
            0    2     1  maxAge  Ljava/lang/Integer;
    MethodParameters:
        Name  Flags
      maxAge  final

  public boolean isDiscard();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.handlers.CookieImpl this
         0: .line 96
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.discard:Z
            ireturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.CookieImpl setDiscard(boolean);
    descriptor: (Z)Lio/undertow/server/handlers/CookieImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // boolean discard
         0: .line 100
            aload 0 /* this */
            iload 1 /* discard */
            putfield io.undertow.server.handlers.CookieImpl.discard:Z
         1: .line 101
            aload 0 /* this */
            areturn
        end local 1 // boolean discard
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/undertow/server/handlers/CookieImpl;
            0    2     1  discard  Z
    MethodParameters:
         Name  Flags
      discard  final

  public boolean isSecure();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.handlers.CookieImpl this
         0: .line 105
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.secure:Z
            ireturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.CookieImpl setSecure(boolean);
    descriptor: (Z)Lio/undertow/server/handlers/CookieImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // boolean secure
         0: .line 109
            aload 0 /* this */
            iload 1 /* secure */
            putfield io.undertow.server.handlers.CookieImpl.secure:Z
         1: .line 110
            aload 0 /* this */
            areturn
        end local 1 // boolean secure
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/undertow/server/handlers/CookieImpl;
            0    2     1  secure  Z
    MethodParameters:
        Name  Flags
      secure  final

  public int getVersion();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.handlers.CookieImpl this
         0: .line 114
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.version:I
            ireturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.CookieImpl setVersion(int);
    descriptor: (I)Lio/undertow/server/handlers/CookieImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // int version
         0: .line 118
            aload 0 /* this */
            iload 1 /* version */
            putfield io.undertow.server.handlers.CookieImpl.version:I
         1: .line 119
            aload 0 /* this */
            areturn
        end local 1 // int version
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/undertow/server/handlers/CookieImpl;
            0    2     1  version  I
    MethodParameters:
         Name  Flags
      version  final

  public boolean isHttpOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.handlers.CookieImpl this
         0: .line 123
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.httpOnly:Z
            ireturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.CookieImpl setHttpOnly(boolean);
    descriptor: (Z)Lio/undertow/server/handlers/CookieImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // boolean httpOnly
         0: .line 127
            aload 0 /* this */
            iload 1 /* httpOnly */
            putfield io.undertow.server.handlers.CookieImpl.httpOnly:Z
         1: .line 128
            aload 0 /* this */
            areturn
        end local 1 // boolean httpOnly
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/undertow/server/handlers/CookieImpl;
            0    2     1  httpOnly  Z
    MethodParameters:
          Name  Flags
      httpOnly  final

  public java.util.Date getExpires();
    descriptor: ()Ljava/util/Date;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.handlers.CookieImpl this
         0: .line 132
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.expires:Ljava/util/Date;
            areturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.CookieImpl setExpires(java.util.Date);
    descriptor: (Ljava/util/Date;)Lio/undertow/server/handlers/CookieImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // java.util.Date expires
         0: .line 136
            aload 0 /* this */
            aload 1 /* expires */
            putfield io.undertow.server.handlers.CookieImpl.expires:Ljava/util/Date;
         1: .line 137
            aload 0 /* this */
            areturn
        end local 1 // java.util.Date expires
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/undertow/server/handlers/CookieImpl;
            0    2     1  expires  Ljava/util/Date;
    MethodParameters:
         Name  Flags
      expires  final

  public java.lang.String getComment();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.handlers.CookieImpl this
         0: .line 141
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.comment:Ljava/lang/String;
            areturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.Cookie setComment(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/server/handlers/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // java.lang.String comment
         0: .line 145
            aload 0 /* this */
            aload 1 /* comment */
            putfield io.undertow.server.handlers.CookieImpl.comment:Ljava/lang/String;
         1: .line 146
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String comment
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/undertow/server/handlers/CookieImpl;
            0    2     1  comment  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      comment  final

  public boolean isSameSite();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.handlers.CookieImpl this
         0: .line 151
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.sameSite:Z
            ireturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.Cookie setSameSite(boolean);
    descriptor: (Z)Lio/undertow/server/handlers/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // boolean sameSite
         0: .line 156
            aload 0 /* this */
            iload 1 /* sameSite */
            putfield io.undertow.server.handlers.CookieImpl.sameSite:Z
         1: .line 157
            aload 0 /* this */
            areturn
        end local 1 // boolean sameSite
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/undertow/server/handlers/CookieImpl;
            0    2     1  sameSite  Z
    MethodParameters:
          Name  Flags
      sameSite  final

  public java.lang.String getSameSiteMode();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.handlers.CookieImpl this
         0: .line 162
            aload 0 /* this */
            getfield io.undertow.server.handlers.CookieImpl.sameSiteMode:Ljava/lang/String;
            areturn
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/CookieImpl;

  public io.undertow.server.handlers.Cookie setSameSiteMode(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/server/handlers/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.undertow.server.handlers.CookieImpl this
        start local 1 // java.lang.String sameSiteMode
         0: .line 167
            aload 1 /* sameSiteMode */
            ifnull 11
         1: .line 168
            aload 1 /* sameSiteMode */
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toLowerCase:(Ljava/util/Locale;)Ljava/lang/String;
            dup
            astore 2
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 2
           -891986231: 2
               106915: 3
              default: 10
          }
      StackMap locals: java.lang.String
      StackMap stack:
         2: aload 2
            ldc "strict"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 4
            goto 10
      StackMap locals:
      StackMap stack:
         3: aload 2
            ldc "lax"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 7
            goto 10
         4: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual io.undertow.server.handlers.CookieImpl.setSameSite:(Z)Lio/undertow/server/handlers/Cookie;
            pop
         5: .line 171
            aload 0 /* this */
            ldc "Strict"
            putfield io.undertow.server.handlers.CookieImpl.sameSiteMode:Ljava/lang/String;
         6: .line 172
            goto 11
         7: .line 174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual io.undertow.server.handlers.CookieImpl.setSameSite:(Z)Lio/undertow/server/handlers/Cookie;
            pop
         8: .line 175
            aload 0 /* this */
            ldc "Lax"
            putfield io.undertow.server.handlers.CookieImpl.sameSiteMode:Ljava/lang/String;
         9: .line 176
            goto 11
        10: .line 178
      StackMap locals:
      StackMap stack:
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            aload 1 /* sameSiteMode */
            invokeinterface io.undertow.UndertowMessages.invalidSameSiteMode:(Ljava/lang/String;)Ljava/lang/IllegalArgumentException;
            athrow
        11: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String sameSiteMode
        end local 0 // io.undertow.server.handlers.CookieImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lio/undertow/server/handlers/CookieImpl;
            0   12     1  sameSiteMode  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      sameSiteMode  final

  public io.undertow.server.handlers.Cookie setDiscard(boolean);
    descriptor: (Z)Lio/undertow/server/handlers/Cookie;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.undertow.server.handlers.CookieImpl.setDiscard:(Z)Lio/undertow/server/handlers/CookieImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.undertow.server.handlers.Cookie setExpires(java.util.Date);
    descriptor: (Ljava/util/Date;)Lio/undertow/server/handlers/Cookie;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.undertow.server.handlers.CookieImpl.setExpires:(Ljava/util/Date;)Lio/undertow/server/handlers/CookieImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.undertow.server.handlers.Cookie setPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/server/handlers/Cookie;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.undertow.server.handlers.CookieImpl.setPath:(Ljava/lang/String;)Lio/undertow/server/handlers/CookieImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.undertow.server.handlers.Cookie setMaxAge(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)Lio/undertow/server/handlers/Cookie;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.undertow.server.handlers.CookieImpl.setMaxAge:(Ljava/lang/Integer;)Lio/undertow/server/handlers/CookieImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.undertow.server.handlers.Cookie setSecure(boolean);
    descriptor: (Z)Lio/undertow/server/handlers/Cookie;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.undertow.server.handlers.CookieImpl.setSecure:(Z)Lio/undertow/server/handlers/CookieImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.undertow.server.handlers.Cookie setValue(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/server/handlers/Cookie;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.undertow.server.handlers.CookieImpl.setValue:(Ljava/lang/String;)Lio/undertow/server/handlers/CookieImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.undertow.server.handlers.Cookie setHttpOnly(boolean);
    descriptor: (Z)Lio/undertow/server/handlers/Cookie;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.undertow.server.handlers.CookieImpl.setHttpOnly:(Z)Lio/undertow/server/handlers/CookieImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.undertow.server.handlers.Cookie setVersion(int);
    descriptor: (I)Lio/undertow/server/handlers/Cookie;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.undertow.server.handlers.CookieImpl.setVersion:(I)Lio/undertow/server/handlers/CookieImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.undertow.server.handlers.Cookie setDomain(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/server/handlers/Cookie;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.undertow.server.handlers.CookieImpl.setDomain:(Ljava/lang/String;)Lio/undertow/server/handlers/CookieImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "CookieImpl.java"