class com.microsoft.azure.credentials.MSIToken
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.microsoft.azure.credentials.MSIToken
  super_class: java.lang.Object
{
  private static org.joda.time.DateTime epoch;
    descriptor: Lorg/joda/time/DateTime;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private java.lang.String tokenType;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "token_type")

  private java.lang.String accessToken;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "access_token")

  private java.lang.String expiresOn;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty(value = "expires_on")

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=9, locals=0, args_size=0
         0: .line 17
            new org.joda.time.DateTime
            dup
            sipush 1970
            iconst_1
            iconst_1
            iconst_0
            iconst_0
            iconst_0
            getstatic org.joda.time.DateTimeZone.UTC:Lorg/joda/time/DateTimeZone;
            invokespecial org.joda.time.DateTime.<init>:(IIIIIILorg/joda/time/DateTimeZone;)V
            putstatic com.microsoft.azure.credentials.MSIToken.epoch:Lorg/joda/time/DateTime;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.credentials.MSIToken this
         0: .line 16
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.microsoft.azure.credentials.MSIToken this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/credentials/MSIToken;

  java.lang.String accessToken();
    descriptor: ()Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.credentials.MSIToken this
         0: .line 29
            aload 0 /* this */
            getfield com.microsoft.azure.credentials.MSIToken.accessToken:Ljava/lang/String;
            areturn
        end local 0 // com.microsoft.azure.credentials.MSIToken this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/credentials/MSIToken;

  java.lang.String tokenType();
    descriptor: ()Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.credentials.MSIToken this
         0: .line 33
            aload 0 /* this */
            getfield com.microsoft.azure.credentials.MSIToken.tokenType:Ljava/lang/String;
            areturn
        end local 0 // com.microsoft.azure.credentials.MSIToken this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/credentials/MSIToken;

  boolean isExpired();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.microsoft.azure.credentials.MSIToken this
         0: .line 37
            getstatic org.joda.time.DateTimeZone.UTC:Lorg/joda/time/DateTimeZone;
            invokestatic org.joda.time.DateTime.now:(Lorg/joda/time/DateTimeZone;)Lorg/joda/time/DateTime;
            astore 1 /* now */
        start local 1 // org.joda.time.DateTime now
         1: .line 38
            getstatic com.microsoft.azure.credentials.MSIToken.epoch:Lorg/joda/time/DateTime;
            aload 0 /* this */
            getfield com.microsoft.azure.credentials.MSIToken.expiresOn:Ljava/lang/String;
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            invokevirtual org.joda.time.DateTime.plusSeconds:(I)Lorg/joda/time/DateTime;
            astore 2 /* expireOn */
        start local 2 // org.joda.time.DateTime expireOn
         2: .line 39
            aload 1 /* now */
            iconst_5
            invokevirtual org.joda.time.DateTime.plusMinutes:(I)Lorg/joda/time/DateTime;
            aload 2 /* expireOn */
            invokevirtual org.joda.time.DateTime.getMillis:()J
            invokevirtual org.joda.time.DateTime.isAfter:(J)Z
            ireturn
        end local 2 // org.joda.time.DateTime expireOn
        end local 1 // org.joda.time.DateTime now
        end local 0 // com.microsoft.azure.credentials.MSIToken this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/microsoft/azure/credentials/MSIToken;
            1    3     1       now  Lorg/joda/time/DateTime;
            2    3     2  expireOn  Lorg/joda/time/DateTime;
}
SourceFile: "MSIToken.java"