public class io.vertx.ext.auth.SecretOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.auth.SecretOptions
  super_class: java.lang.Object
{
  private static final java.lang.String TYPE;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "HS256"

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.auth.SecretOptions this
         0: .line 20
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            aload 0 /* this */
            invokevirtual io.vertx.ext.auth.SecretOptions.init:()V
            return
        end local 0 // io.vertx.ext.auth.SecretOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/auth/SecretOptions;

  public void <init>(io.vertx.ext.auth.SecretOptions);
    descriptor: (Lio/vertx/ext/auth/SecretOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.SecretOptions this
        start local 1 // io.vertx.ext.auth.SecretOptions other
         0: .line 22
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 23
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.ext.auth.SecretOptions.getType:()Ljava/lang/String;
            putfield io.vertx.ext.auth.SecretOptions.type:Ljava/lang/String;
         2: .line 24
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.ext.auth.SecretOptions.getSecret:()Ljava/lang/String;
            putfield io.vertx.ext.auth.SecretOptions.secret:Ljava/lang/String;
         3: .line 25
            return
        end local 1 // io.vertx.ext.auth.SecretOptions other
        end local 0 // io.vertx.ext.auth.SecretOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lio/vertx/ext/auth/SecretOptions;
            0    4     1  other  Lio/vertx/ext/auth/SecretOptions;
    MethodParameters:
       Name  Flags
      other  

  public void <init>(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.SecretOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            invokevirtual io.vertx.ext.auth.SecretOptions.init:()V
         2: .line 34
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.ext.auth.SecretOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/ext/auth/SecretOptions;)V
         3: .line 35
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.auth.SecretOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/auth/SecretOptions;
            0    4     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  public java.lang.String getType();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.auth.SecretOptions this
         0: .line 38
            aload 0 /* this */
            getfield io.vertx.ext.auth.SecretOptions.type:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.auth.SecretOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/auth/SecretOptions;

  public io.vertx.ext.auth.SecretOptions setType(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/auth/SecretOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.SecretOptions this
        start local 1 // java.lang.String type
         0: .line 42
            aload 0 /* this */
            aload 1 /* type */
            putfield io.vertx.ext.auth.SecretOptions.type:Ljava/lang/String;
         1: .line 43
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String type
        end local 0 // io.vertx.ext.auth.SecretOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/auth/SecretOptions;
            0    2     1  type  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      type  

  public java.lang.String getSecret();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.auth.SecretOptions this
         0: .line 47
            aload 0 /* this */
            getfield io.vertx.ext.auth.SecretOptions.secret:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.auth.SecretOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/auth/SecretOptions;

  public io.vertx.ext.auth.SecretOptions setSecret(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/auth/SecretOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.SecretOptions this
        start local 1 // java.lang.String secret
         0: .line 51
            aload 0 /* this */
            aload 1 /* secret */
            putfield io.vertx.ext.auth.SecretOptions.secret:Ljava/lang/String;
         1: .line 52
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String secret
        end local 0 // io.vertx.ext.auth.SecretOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/ext/auth/SecretOptions;
            0    2     1  secret  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      secret  

  private void init();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.auth.SecretOptions this
         0: .line 56
            aload 0 /* this */
            ldc "HS256"
            putfield io.vertx.ext.auth.SecretOptions.type:Ljava/lang/String;
         1: .line 57
            return
        end local 0 // io.vertx.ext.auth.SecretOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/auth/SecretOptions;
}
SourceFile: "SecretOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
      io.vertx.codegen.annotations.DataObject(generateConverter = true)