public class org.springframework.boot.web.servlet.server.Session$Cookie
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.boot.web.servlet.server.Session$Cookie
  super_class: java.lang.Object
{
  private java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String domain;
    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 comment;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Boolean httpOnly;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Boolean secure;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0002) ACC_PRIVATE

  private java.time.Duration maxAge;
    descriptor: Ljava/time/Duration;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.boot.convert.DurationUnit(value = java.time.temporal.ChronoUnit.SECONDS:Ljava/time/temporal/ChronoUnit;)

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
         0: .line 106
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
         0: .line 128
            aload 0 /* this */
            getfield org.springframework.boot.web.servlet.server.Session$Cookie.name:Ljava/lang/String;
            areturn
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;

  public void setName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
        start local 1 // java.lang.String name
         0: .line 132
            aload 0 /* this */
            aload 1 /* name */
            putfield org.springframework.boot.web.servlet.server.Session$Cookie.name:Ljava/lang/String;
         1: .line 133
            return
        end local 1 // java.lang.String name
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;
            0    2     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public java.lang.String getDomain();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
         0: .line 140
            aload 0 /* this */
            getfield org.springframework.boot.web.servlet.server.Session$Cookie.domain:Ljava/lang/String;
            areturn
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;

  public void setDomain(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
        start local 1 // java.lang.String domain
         0: .line 144
            aload 0 /* this */
            aload 1 /* domain */
            putfield org.springframework.boot.web.servlet.server.Session$Cookie.domain:Ljava/lang/String;
         1: .line 145
            return
        end local 1 // java.lang.String domain
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;
            0    2     1  domain  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      domain  

  public java.lang.String getPath();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
         0: .line 152
            aload 0 /* this */
            getfield org.springframework.boot.web.servlet.server.Session$Cookie.path:Ljava/lang/String;
            areturn
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;

  public void setPath(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
        start local 1 // java.lang.String path
         0: .line 156
            aload 0 /* this */
            aload 1 /* path */
            putfield org.springframework.boot.web.servlet.server.Session$Cookie.path:Ljava/lang/String;
         1: .line 157
            return
        end local 1 // java.lang.String path
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;
            0    2     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  public java.lang.String getComment();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
         0: .line 164
            aload 0 /* this */
            getfield org.springframework.boot.web.servlet.server.Session$Cookie.comment:Ljava/lang/String;
            areturn
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;

  public void setComment(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
        start local 1 // java.lang.String comment
         0: .line 168
            aload 0 /* this */
            aload 1 /* comment */
            putfield org.springframework.boot.web.servlet.server.Session$Cookie.comment:Ljava/lang/String;
         1: .line 169
            return
        end local 1 // java.lang.String comment
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;
            0    2     1  comment  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      comment  

  public java.lang.Boolean getHttpOnly();
    descriptor: ()Ljava/lang/Boolean;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
         0: .line 176
            aload 0 /* this */
            getfield org.springframework.boot.web.servlet.server.Session$Cookie.httpOnly:Ljava/lang/Boolean;
            areturn
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;

  public void setHttpOnly(java.lang.Boolean);
    descriptor: (Ljava/lang/Boolean;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
        start local 1 // java.lang.Boolean httpOnly
         0: .line 180
            aload 0 /* this */
            aload 1 /* httpOnly */
            putfield org.springframework.boot.web.servlet.server.Session$Cookie.httpOnly:Ljava/lang/Boolean;
         1: .line 181
            return
        end local 1 // java.lang.Boolean httpOnly
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;
            0    2     1  httpOnly  Ljava/lang/Boolean;
    MethodParameters:
          Name  Flags
      httpOnly  

  public java.lang.Boolean getSecure();
    descriptor: ()Ljava/lang/Boolean;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
         0: .line 189
            aload 0 /* this */
            getfield org.springframework.boot.web.servlet.server.Session$Cookie.secure:Ljava/lang/Boolean;
            areturn
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;

  public void setSecure(java.lang.Boolean);
    descriptor: (Ljava/lang/Boolean;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
        start local 1 // java.lang.Boolean secure
         0: .line 193
            aload 0 /* this */
            aload 1 /* secure */
            putfield org.springframework.boot.web.servlet.server.Session$Cookie.secure:Ljava/lang/Boolean;
         1: .line 194
            return
        end local 1 // java.lang.Boolean secure
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;
            0    2     1  secure  Ljava/lang/Boolean;
    MethodParameters:
        Name  Flags
      secure  

  public java.time.Duration getMaxAge();
    descriptor: ()Ljava/time/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
         0: .line 201
            aload 0 /* this */
            getfield org.springframework.boot.web.servlet.server.Session$Cookie.maxAge:Ljava/time/Duration;
            areturn
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;

  public void setMaxAge(java.time.Duration);
    descriptor: (Ljava/time/Duration;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
        start local 1 // java.time.Duration maxAge
         0: .line 205
            aload 0 /* this */
            aload 1 /* maxAge */
            putfield org.springframework.boot.web.servlet.server.Session$Cookie.maxAge:Ljava/time/Duration;
         1: .line 206
            return
        end local 1 // java.time.Duration maxAge
        end local 0 // org.springframework.boot.web.servlet.server.Session$Cookie this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/springframework/boot/web/servlet/server/Session$Cookie;
            0    2     1  maxAge  Ljava/time/Duration;
    MethodParameters:
        Name  Flags
      maxAge  
}
SourceFile: "Session.java"
NestHost: org.springframework.boot.web.servlet.server.Session
InnerClasses:
  public Cookie = org.springframework.boot.web.servlet.server.Session$Cookie of org.springframework.boot.web.servlet.server.Session