public class io.undertow.attribute.CookieAttribute implements io.undertow.attribute.ExchangeAttribute
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.undertow.attribute.CookieAttribute
  super_class: java.lang.Object
{
  private final java.lang.String cookieName;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_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.attribute.CookieAttribute this
        start local 1 // java.lang.String cookieName
         0: .line 34
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 35
            aload 0 /* this */
            aload 1 /* cookieName */
            putfield io.undertow.attribute.CookieAttribute.cookieName:Ljava/lang/String;
         2: .line 36
            return
        end local 1 // java.lang.String cookieName
        end local 0 // io.undertow.attribute.CookieAttribute this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lio/undertow/attribute/CookieAttribute;
            0    3     1  cookieName  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      cookieName  final

  public java.lang.String readAttribute(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.undertow.attribute.CookieAttribute this
        start local 1 // io.undertow.server.HttpServerExchange exchange
         0: .line 40
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestCookies:()Ljava/util/Map;
            aload 0 /* this */
            getfield io.undertow.attribute.CookieAttribute.cookieName:Ljava/lang/String;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.undertow.server.handlers.Cookie
            astore 2 /* cookie */
        start local 2 // io.undertow.server.handlers.Cookie cookie
         1: .line 41
            aload 2 /* cookie */
            ifnonnull 3
         2: .line 42
            aconst_null
            areturn
         3: .line 44
      StackMap locals: io.undertow.server.handlers.Cookie
      StackMap stack:
            aload 2 /* cookie */
            invokeinterface io.undertow.server.handlers.Cookie.getValue:()Ljava/lang/String;
            areturn
        end local 2 // io.undertow.server.handlers.Cookie cookie
        end local 1 // io.undertow.server.HttpServerExchange exchange
        end local 0 // io.undertow.attribute.CookieAttribute this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/undertow/attribute/CookieAttribute;
            0    4     1  exchange  Lio/undertow/server/HttpServerExchange;
            1    4     2    cookie  Lio/undertow/server/handlers/Cookie;
    MethodParameters:
          Name  Flags
      exchange  final

  public void writeAttribute(io.undertow.server.HttpServerExchange, java.lang.String);
    descriptor: (Lio/undertow/server/HttpServerExchange;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.undertow.attribute.CookieAttribute this
        start local 1 // io.undertow.server.HttpServerExchange exchange
        start local 2 // java.lang.String newValue
         0: .line 49
            aload 1 /* exchange */
            new io.undertow.server.handlers.CookieImpl
            dup
            aload 0 /* this */
            getfield io.undertow.attribute.CookieAttribute.cookieName:Ljava/lang/String;
            aload 2 /* newValue */
            invokespecial io.undertow.server.handlers.CookieImpl.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            invokevirtual io.undertow.server.HttpServerExchange.setResponseCookie:(Lio/undertow/server/handlers/Cookie;)Lio/undertow/server/HttpServerExchange;
            pop
         1: .line 50
            return
        end local 2 // java.lang.String newValue
        end local 1 // io.undertow.server.HttpServerExchange exchange
        end local 0 // io.undertow.attribute.CookieAttribute this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/undertow/attribute/CookieAttribute;
            0    2     1  exchange  Lio/undertow/server/HttpServerExchange;
            0    2     2  newValue  Ljava/lang/String;
    Exceptions:
      throws io.undertow.attribute.ReadOnlyAttributeException
    MethodParameters:
          Name  Flags
      exchange  final
      newValue  final
}
SourceFile: "CookieAttribute.java"
NestMembers:
  io.undertow.attribute.CookieAttribute$Builder
InnerClasses:
  public final Builder = io.undertow.attribute.CookieAttribute$Builder of io.undertow.attribute.CookieAttribute