public class io.vertx.ext.auth.PubSecKeyOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.auth.PubSecKeyOptions
  super_class: java.lang.Object
{
  private java.lang.String algorithm;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  private java.lang.String secretKey;
    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.PubSecKeyOptions this
         0: .line 23
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 24
            return
        end local 0 // io.vertx.ext.auth.PubSecKeyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/auth/PubSecKeyOptions;

  public void <init>(io.vertx.ext.auth.PubSecKeyOptions);
    descriptor: (Lio/vertx/ext/auth/PubSecKeyOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.PubSecKeyOptions this
        start local 1 // io.vertx.ext.auth.PubSecKeyOptions other
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.ext.auth.PubSecKeyOptions.getAlgorithm:()Ljava/lang/String;
            putfield io.vertx.ext.auth.PubSecKeyOptions.algorithm:Ljava/lang/String;
         2: .line 33
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.ext.auth.PubSecKeyOptions.getPublicKey:()Ljava/lang/String;
            putfield io.vertx.ext.auth.PubSecKeyOptions.publicKey:Ljava/lang/String;
         3: .line 34
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.ext.auth.PubSecKeyOptions.getSecretKey:()Ljava/lang/String;
            putfield io.vertx.ext.auth.PubSecKeyOptions.secretKey:Ljava/lang/String;
         4: .line 35
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.ext.auth.PubSecKeyOptions.isSymmetric:()Z
            putfield io.vertx.ext.auth.PubSecKeyOptions.symmetric:Z
         5: .line 36
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.ext.auth.PubSecKeyOptions.isCertificate:()Z
            putfield io.vertx.ext.auth.PubSecKeyOptions.certificate:Z
         6: .line 37
            return
        end local 1 // io.vertx.ext.auth.PubSecKeyOptions other
        end local 0 // io.vertx.ext.auth.PubSecKeyOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/ext/auth/PubSecKeyOptions;
            0    7     1  other  Lio/vertx/ext/auth/PubSecKeyOptions;
    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.PubSecKeyOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.ext.auth.PubSecKeyOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/ext/auth/PubSecKeyOptions;)V
         2: .line 46
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.auth.PubSecKeyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/auth/PubSecKeyOptions;
            0    3     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

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

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

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

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

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

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

  public boolean isSymmetric();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.auth.PubSecKeyOptions this
         0: .line 76
            aload 0 /* this */
            getfield io.vertx.ext.auth.PubSecKeyOptions.symmetric:Z
            ireturn
        end local 0 // io.vertx.ext.auth.PubSecKeyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/auth/PubSecKeyOptions;

  public io.vertx.ext.auth.PubSecKeyOptions setSymmetric(boolean);
    descriptor: (Z)Lio/vertx/ext/auth/PubSecKeyOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.PubSecKeyOptions this
        start local 1 // boolean symmetric
         0: .line 80
            aload 0 /* this */
            iload 1 /* symmetric */
            putfield io.vertx.ext.auth.PubSecKeyOptions.symmetric:Z
         1: .line 81
            aload 0 /* this */
            areturn
        end local 1 // boolean symmetric
        end local 0 // io.vertx.ext.auth.PubSecKeyOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/vertx/ext/auth/PubSecKeyOptions;
            0    2     1  symmetric  Z
    MethodParameters:
           Name  Flags
      symmetric  

  public boolean isCertificate();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.auth.PubSecKeyOptions this
         0: .line 85
            aload 0 /* this */
            getfield io.vertx.ext.auth.PubSecKeyOptions.certificate:Z
            ireturn
        end local 0 // io.vertx.ext.auth.PubSecKeyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/auth/PubSecKeyOptions;

  public io.vertx.ext.auth.PubSecKeyOptions setCertificate(boolean);
    descriptor: (Z)Lio/vertx/ext/auth/PubSecKeyOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.PubSecKeyOptions this
        start local 1 // boolean certificate
         0: .line 89
            aload 0 /* this */
            iload 1 /* certificate */
            putfield io.vertx.ext.auth.PubSecKeyOptions.certificate:Z
         1: .line 90
            aload 0 /* this */
            areturn
        end local 1 // boolean certificate
        end local 0 // io.vertx.ext.auth.PubSecKeyOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/ext/auth/PubSecKeyOptions;
            0    2     1  certificate  Z
    MethodParameters:
             Name  Flags
      certificate  
}
SourceFile: "PubSecKeyOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)