public interface io.vertx.ext.auth.oauth2.AccessToken extends io.vertx.ext.auth.User
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.ext.auth.oauth2.AccessToken
  super_class: java.lang.Object
{
  public abstract boolean isScopeGranted();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract io.vertx.core.json.JsonObject accessToken();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public abstract io.vertx.core.json.JsonObject idToken();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public abstract java.lang.String opaqueAccessToken();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String opaqueRefreshToken();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String opaqueIdToken();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String tokenType();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract io.vertx.ext.auth.oauth2.AccessToken setTrustJWT(boolean);
    descriptor: (Z)Lio/vertx/ext/auth/oauth2/AccessToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
       Name  Flags
      trust  

  public abstract io.vertx.ext.auth.oauth2.AccessToken refresh(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/ext/auth/oauth2/AccessToken;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
          Name  Flags
      callback  

  public io.vertx.core.Future<java.lang.Void> refresh();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.auth.oauth2.AccessToken this
         0: .line 96
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 97
            aload 0 /* this */
            aload 1 /* promise */
            invokeinterface io.vertx.ext.auth.oauth2.AccessToken.refresh:(Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
            pop
         2: .line 98
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.ext.auth.oauth2.AccessToken this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/ext/auth/oauth2/AccessToken;
            1    3     1  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public abstract io.vertx.ext.auth.oauth2.AccessToken revoke(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/ext/auth/oauth2/AccessToken;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
            Name  Flags
      token_type  
      callback    

  public io.vertx.core.Future<java.lang.Void> revoke(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.auth.oauth2.AccessToken this
        start local 1 // java.lang.String token_type
         0: .line 118
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 119
            aload 0 /* this */
            aload 1 /* token_type */
            aload 2 /* promise */
            invokeinterface io.vertx.ext.auth.oauth2.AccessToken.revoke:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
            pop
         2: .line 120
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise promise
        end local 1 // java.lang.String token_type
        end local 0 // io.vertx.ext.auth.oauth2.AccessToken this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lio/vertx/ext/auth/oauth2/AccessToken;
            0    3     1  token_type  Ljava/lang/String;
            1    3     2     promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
            Name  Flags
      token_type  

  public abstract io.vertx.ext.auth.oauth2.AccessToken logout(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/ext/auth/oauth2/AccessToken;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
          Name  Flags
      callback  

  public io.vertx.core.Future<java.lang.Void> logout();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.auth.oauth2.AccessToken this
         0: .line 140
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 141
            aload 0 /* this */
            aload 1 /* promise */
            invokeinterface io.vertx.ext.auth.oauth2.AccessToken.logout:(Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
            pop
         2: .line 142
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.ext.auth.oauth2.AccessToken this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/ext/auth/oauth2/AccessToken;
            1    3     1  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public abstract io.vertx.ext.auth.oauth2.AccessToken introspect(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/ext/auth/oauth2/AccessToken;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
          Name  Flags
      callback  

  public io.vertx.core.Future<java.lang.Void> introspect();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.auth.oauth2.AccessToken this
         0: .line 160
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 161
            aload 0 /* this */
            aload 1 /* promise */
            invokeinterface io.vertx.ext.auth.oauth2.AccessToken.introspect:(Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
            pop
         2: .line 162
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.ext.auth.oauth2.AccessToken this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/ext/auth/oauth2/AccessToken;
            1    3     1  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public abstract io.vertx.ext.auth.oauth2.AccessToken introspect(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/ext/auth/oauth2/AccessToken;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
           Name  Flags
      tokenType  
      callback   

  public io.vertx.core.Future<java.lang.Void> introspect(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.auth.oauth2.AccessToken this
        start local 1 // java.lang.String tokenType
         0: .line 182
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 183
            aload 0 /* this */
            aload 1 /* tokenType */
            aload 2 /* promise */
            invokeinterface io.vertx.ext.auth.oauth2.AccessToken.introspect:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
            pop
         2: .line 184
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise promise
        end local 1 // java.lang.String tokenType
        end local 0 // io.vertx.ext.auth.oauth2.AccessToken this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lio/vertx/ext/auth/oauth2/AccessToken;
            0    3     1  tokenType  Ljava/lang/String;
            1    3     2    promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
           Name  Flags
      tokenType  

  public abstract io.vertx.ext.auth.oauth2.AccessToken userInfo(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;>;)Lio/vertx/ext/auth/oauth2/AccessToken;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
          Name  Flags
      callback  

  public io.vertx.core.Future<io.vertx.core.json.JsonObject> userInfo();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.auth.oauth2.AccessToken this
         0: .line 202
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 203
            aload 0 /* this */
            aload 1 /* promise */
            invokeinterface io.vertx.ext.auth.oauth2.AccessToken.userInfo:(Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
            pop
         2: .line 204
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.ext.auth.oauth2.AccessToken this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/ext/auth/oauth2/AccessToken;
            1    3     1  promise  Lio/vertx/core/Promise<Lio/vertx/core/json/JsonObject;>;
    Signature: ()Lio/vertx/core/Future<Lio/vertx/core/json/JsonObject;>;

  public io.vertx.ext.auth.oauth2.AccessToken fetch(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.auth.oauth2.OAuth2Response>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.vertx.ext.auth.oauth2.AccessToken this
        start local 1 // java.lang.String resource
        start local 2 // io.vertx.core.Handler callback
         0: .line 215
            aload 0 /* this */
            getstatic io.vertx.core.http.HttpMethod.GET:Lio/vertx/core/http/HttpMethod;
            aload 1 /* resource */
            aconst_null
            aconst_null
            aload 2 /* callback */
            invokeinterface io.vertx.ext.auth.oauth2.AccessToken.fetch:(Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
            areturn
        end local 2 // io.vertx.core.Handler callback
        end local 1 // java.lang.String resource
        end local 0 // io.vertx.ext.auth.oauth2.AccessToken this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/ext/auth/oauth2/AccessToken;
            0    1     1  resource  Ljava/lang/String;
            0    1     2  callback  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/auth/oauth2/OAuth2Response;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/auth/oauth2/OAuth2Response;>;>;)Lio/vertx/ext/auth/oauth2/AccessToken;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
          Name  Flags
      resource  
      callback  

  public io.vertx.core.Future<io.vertx.ext.auth.oauth2.OAuth2Response> fetch(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.auth.oauth2.AccessToken this
        start local 1 // java.lang.String resource
         0: .line 226
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 227
            aload 0 /* this */
            aload 1 /* resource */
            aload 2 /* promise */
            invokeinterface io.vertx.ext.auth.oauth2.AccessToken.fetch:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
            pop
         2: .line 228
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise promise
        end local 1 // java.lang.String resource
        end local 0 // io.vertx.ext.auth.oauth2.AccessToken this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/vertx/ext/auth/oauth2/AccessToken;
            0    3     1  resource  Ljava/lang/String;
            1    3     2   promise  Lio/vertx/core/Promise<Lio/vertx/ext/auth/oauth2/OAuth2Response;>;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Lio/vertx/ext/auth/oauth2/OAuth2Response;>;
    MethodParameters:
          Name  Flags
      resource  

  public abstract io.vertx.ext.auth.oauth2.AccessToken fetch(io.vertx.core.http.HttpMethod, java.lang.String, io.vertx.core.json.JsonObject, io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.auth.oauth2.OAuth2Response>>);
    descriptor: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/auth/oauth2/OAuth2Response;>;>;)Lio/vertx/ext/auth/oauth2/AccessToken;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
          Name  Flags
      method    
      resource  
      headers   
      payload   
      callback  

  public io.vertx.core.Future<io.vertx.ext.auth.oauth2.OAuth2Response> fetch(io.vertx.core.http.HttpMethod, java.lang.String, io.vertx.core.json.JsonObject, io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // io.vertx.ext.auth.oauth2.AccessToken this
        start local 1 // io.vertx.core.http.HttpMethod method
        start local 2 // java.lang.String resource
        start local 3 // io.vertx.core.json.JsonObject headers
        start local 4 // io.vertx.core.buffer.Buffer payload
         0: .line 254
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 5 /* promise */
        start local 5 // io.vertx.core.Promise promise
         1: .line 255
            aload 0 /* this */
            aload 1 /* method */
            aload 2 /* resource */
            aload 3 /* headers */
            aload 4 /* payload */
            aload 5 /* promise */
            invokeinterface io.vertx.ext.auth.oauth2.AccessToken.fetch:(Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/ext/auth/oauth2/AccessToken;
            pop
         2: .line 256
            aload 5 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 5 // io.vertx.core.Promise promise
        end local 4 // io.vertx.core.buffer.Buffer payload
        end local 3 // io.vertx.core.json.JsonObject headers
        end local 2 // java.lang.String resource
        end local 1 // io.vertx.core.http.HttpMethod method
        end local 0 // io.vertx.ext.auth.oauth2.AccessToken this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/vertx/ext/auth/oauth2/AccessToken;
            0    3     1    method  Lio/vertx/core/http/HttpMethod;
            0    3     2  resource  Ljava/lang/String;
            0    3     3   headers  Lio/vertx/core/json/JsonObject;
            0    3     4   payload  Lio/vertx/core/buffer/Buffer;
            1    3     5   promise  Lio/vertx/core/Promise<Lio/vertx/ext/auth/oauth2/OAuth2Response;>;
    Signature: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future<Lio/vertx/ext/auth/oauth2/OAuth2Response;>;
    MethodParameters:
          Name  Flags
      method    
      resource  
      headers   
      payload   
}
SourceFile: "AccessToken.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()
      java.lang.Deprecated()