public class com.microsoft.azure.PollingState<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.microsoft.azure.PollingState
  super_class: java.lang.Object
{
  private java.lang.String initialHttpMethod;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

  private int statusCode;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

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

  private int defaultRetryTimeout;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int retryTimeout;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

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

  private com.microsoft.azure.LongRunningFinalState finalStateVia;
    descriptor: Lcom/microsoft/azure/LongRunningFinalState;
    flags: (0x0002) ACC_PRIVATE

  private static final java.lang.String LOGGING_HEADER;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "x-ms-logging-context"
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonIgnore()

  private static final int DEFAULT_STATUS_CODE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonIgnore()

  private retrofit2.Response<okhttp3.ResponseBody> response;
    descriptor: Lretrofit2/Response;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lretrofit2/Response<Lokhttp3/ResponseBody;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonIgnore()

  private T resource;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Signature: TT;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonIgnore()

  private java.lang.reflect.Type resourceType;
    descriptor: Ljava/lang/reflect/Type;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonIgnore()

  private com.microsoft.azure.CloudError error;
    descriptor: Lcom/microsoft/azure/CloudError;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonIgnore()

  private com.microsoft.rest.protocol.SerializerAdapter<?> serializerAdapter;
    descriptor: Lcom/microsoft/rest/protocol/SerializerAdapter;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lcom/microsoft/rest/protocol/SerializerAdapter<*>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonIgnore()

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 84
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            iconst_0
            putfield com.microsoft.azure.PollingState.statusCode:I
         2: .line 85
            return
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/microsoft/azure/PollingState<TT;>;

  public static <T> com.microsoft.azure.PollingState<T> create(retrofit2.Response<okhttp3.ResponseBody>, com.microsoft.azure.LongRunningOperationOptions, int, java.lang.reflect.Type, com.microsoft.rest.protocol.SerializerAdapter<?>);
    descriptor: (Lretrofit2/Response;Lcom/microsoft/azure/LongRunningOperationOptions;ILjava/lang/reflect/Type;Lcom/microsoft/rest/protocol/SerializerAdapter;)Lcom/microsoft/azure/PollingState;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=9, args_size=5
        start local 0 // retrofit2.Response response
        start local 1 // com.microsoft.azure.LongRunningOperationOptions lroOptions
        start local 2 // int defaultRetryTimeout
        start local 3 // java.lang.reflect.Type resourceType
        start local 4 // com.microsoft.rest.protocol.SerializerAdapter serializerAdapter
         0: .line 100
            new com.microsoft.azure.PollingState
            dup
            invokespecial com.microsoft.azure.PollingState.<init>:()V
            astore 5 /* pollingState */
        start local 5 // com.microsoft.azure.PollingState pollingState
         1: .line 101
            aload 5 /* pollingState */
            aload 0 /* response */
            invokevirtual retrofit2.Response.raw:()Lokhttp3/Response;
            invokevirtual okhttp3.Response.request:()Lokhttp3/Request;
            invokevirtual okhttp3.Request.method:()Ljava/lang/String;
            putfield com.microsoft.azure.PollingState.initialHttpMethod:Ljava/lang/String;
         2: .line 102
            aload 5 /* pollingState */
            iload 2 /* defaultRetryTimeout */
            putfield com.microsoft.azure.PollingState.defaultRetryTimeout:I
         3: .line 103
            aload 5 /* pollingState */
            aload 0 /* response */
            invokevirtual com.microsoft.azure.PollingState.withResponse:(Lretrofit2/Response;)Lcom/microsoft/azure/PollingState;
            pop
         4: .line 104
            aload 5 /* pollingState */
            aload 3 /* resourceType */
            putfield com.microsoft.azure.PollingState.resourceType:Ljava/lang/reflect/Type;
         5: .line 105
            aload 5 /* pollingState */
            aload 4 /* serializerAdapter */
            putfield com.microsoft.azure.PollingState.serializerAdapter:Lcom/microsoft/rest/protocol/SerializerAdapter;
         6: .line 106
            aload 5 /* pollingState */
            aload 0 /* response */
            invokevirtual retrofit2.Response.raw:()Lokhttp3/Response;
            invokevirtual okhttp3.Response.request:()Lokhttp3/Request;
            ldc "x-ms-logging-context"
            invokevirtual okhttp3.Request.header:(Ljava/lang/String;)Ljava/lang/String;
            putfield com.microsoft.azure.PollingState.loggingContext:Ljava/lang/String;
         7: .line 107
            aload 5 /* pollingState */
            aload 1 /* lroOptions */
            invokevirtual com.microsoft.azure.LongRunningOperationOptions.finalStateVia:()Lcom/microsoft/azure/LongRunningFinalState;
            putfield com.microsoft.azure.PollingState.finalStateVia:Lcom/microsoft/azure/LongRunningFinalState;
         8: .line 109
            aconst_null
            astore 6 /* responseContent */
        start local 6 // java.lang.String responseContent
         9: .line 110
            aconst_null
            astore 7 /* resource */
        start local 7 // com.microsoft.azure.PollingState$PollingResource resource
        10: .line 111
            aload 0 /* response */
            invokevirtual retrofit2.Response.body:()Ljava/lang/Object;
            ifnull 13
        11: .line 112
            aload 0 /* response */
            invokevirtual retrofit2.Response.body:()Ljava/lang/Object;
            checkcast okhttp3.ResponseBody
            invokevirtual okhttp3.ResponseBody.string:()Ljava/lang/String;
            astore 6 /* responseContent */
        12: .line 113
            aload 0 /* response */
            invokevirtual retrofit2.Response.body:()Ljava/lang/Object;
            checkcast okhttp3.ResponseBody
            invokevirtual okhttp3.ResponseBody.close:()V
        13: .line 115
      StackMap locals: com.microsoft.azure.PollingState java.lang.String com.microsoft.azure.PollingState$PollingResource
      StackMap stack:
            aload 6 /* responseContent */
            ifnull 16
            aload 6 /* responseContent */
            invokevirtual java.lang.String.isEmpty:()Z
            ifne 16
        14: .line 116
            aload 5 /* pollingState */
            aload 4 /* serializerAdapter */
            aload 6 /* responseContent */
            aload 3 /* resourceType */
            invokeinterface com.microsoft.rest.protocol.SerializerAdapter.deserialize:(Ljava/lang/String;Ljava/lang/reflect/Type;)Ljava/lang/Object;
            putfield com.microsoft.azure.PollingState.resource:Ljava/lang/Object;
        15: .line 117
            aload 4 /* serializerAdapter */
            aload 6 /* responseContent */
            ldc Lcom/microsoft/azure/PollingState$PollingResource;
            invokeinterface com.microsoft.rest.protocol.SerializerAdapter.deserialize:(Ljava/lang/String;Ljava/lang/reflect/Type;)Ljava/lang/Object;
            checkcast com.microsoft.azure.PollingState$PollingResource
            astore 7 /* resource */
        16: .line 119
      StackMap locals:
      StackMap stack:
            aload 5 /* pollingState */
            getfield com.microsoft.azure.PollingState.response:Lretrofit2/Response;
            invokevirtual retrofit2.Response.code:()I
            istore 8 /* statusCode */
        start local 8 // int statusCode
        17: .line 120
            aload 7 /* resource */
            ifnull 21
            aload 7 /* resource */
            getfield com.microsoft.azure.PollingState$PollingResource.properties:Lcom/microsoft/azure/PollingState$PollingResource$Properties;
            ifnull 21
        18: .line 121
            aload 7 /* resource */
            getfield com.microsoft.azure.PollingState$PollingResource.properties:Lcom/microsoft/azure/PollingState$PollingResource$Properties;
            getfield com.microsoft.azure.PollingState$PollingResource$Properties.provisioningState:Ljava/lang/String;
            ifnull 21
        19: .line 122
            aload 5 /* pollingState */
            aload 7 /* resource */
            getfield com.microsoft.azure.PollingState$PollingResource.properties:Lcom/microsoft/azure/PollingState$PollingResource$Properties;
            getfield com.microsoft.azure.PollingState$PollingResource$Properties.provisioningState:Ljava/lang/String;
            iload 8 /* statusCode */
            invokevirtual com.microsoft.azure.PollingState.withStatus:(Ljava/lang/String;I)Lcom/microsoft/azure/PollingState;
            pop
        20: .line 123
            goto 27
        21: .line 124
      StackMap locals: int
      StackMap stack:
            iload 8 /* statusCode */
            tableswitch { // 200 - 204
                  200: 24
                  201: 24
                  202: 22
                  203: 26
                  204: 24
              default: 26
          }
        22: .line 126
      StackMap locals:
      StackMap stack:
            aload 5 /* pollingState */
            ldc "InProgress"
            iload 8 /* statusCode */
            invokevirtual com.microsoft.azure.PollingState.withStatus:(Ljava/lang/String;I)Lcom/microsoft/azure/PollingState;
            pop
        23: .line 127
            goto 27
        24: .line 131
      StackMap locals:
      StackMap stack:
            aload 5 /* pollingState */
            ldc "Succeeded"
            iload 8 /* statusCode */
            invokevirtual com.microsoft.azure.PollingState.withStatus:(Ljava/lang/String;I)Lcom/microsoft/azure/PollingState;
            pop
        25: .line 132
            goto 27
        26: .line 134
      StackMap locals:
      StackMap stack:
            aload 5 /* pollingState */
            ldc "Failed"
            iload 8 /* statusCode */
            invokevirtual com.microsoft.azure.PollingState.withStatus:(Ljava/lang/String;I)Lcom/microsoft/azure/PollingState;
            pop
        27: .line 137
      StackMap locals:
      StackMap stack:
            aload 5 /* pollingState */
            areturn
        end local 8 // int statusCode
        end local 7 // com.microsoft.azure.PollingState$PollingResource resource
        end local 6 // java.lang.String responseContent
        end local 5 // com.microsoft.azure.PollingState pollingState
        end local 4 // com.microsoft.rest.protocol.SerializerAdapter serializerAdapter
        end local 3 // java.lang.reflect.Type resourceType
        end local 2 // int defaultRetryTimeout
        end local 1 // com.microsoft.azure.LongRunningOperationOptions lroOptions
        end local 0 // retrofit2.Response response
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   28     0             response  Lretrofit2/Response<Lokhttp3/ResponseBody;>;
            0   28     1           lroOptions  Lcom/microsoft/azure/LongRunningOperationOptions;
            0   28     2  defaultRetryTimeout  I
            0   28     3         resourceType  Ljava/lang/reflect/Type;
            0   28     4    serializerAdapter  Lcom/microsoft/rest/protocol/SerializerAdapter<*>;
            1   28     5         pollingState  Lcom/microsoft/azure/PollingState<TT;>;
            9   28     6      responseContent  Ljava/lang/String;
           10   28     7             resource  Lcom/microsoft/azure/PollingState$PollingResource;
           17   28     8           statusCode  I
    Exceptions:
      throws java.io.IOException
    Signature: <T:Ljava/lang/Object;>(Lretrofit2/Response<Lokhttp3/ResponseBody;>;Lcom/microsoft/azure/LongRunningOperationOptions;ILjava/lang/reflect/Type;Lcom/microsoft/rest/protocol/SerializerAdapter<*>;)Lcom/microsoft/azure/PollingState<TT;>;
    MethodParameters:
                     Name  Flags
      response             
      lroOptions           
      defaultRetryTimeout  
      resourceType         
      serializerAdapter    

  public static <ResultT> com.microsoft.azure.PollingState<ResultT> createFromJSONString(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/microsoft/azure/PollingState;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // java.lang.String serializedPollingState
         0: .line 148
            new com.fasterxml.jackson.databind.ObjectMapper
            dup
            invokespecial com.fasterxml.jackson.databind.ObjectMapper.<init>:()V
            invokestatic com.microsoft.azure.PollingState.initMapper:(Lcom/fasterxml/jackson/databind/ObjectMapper;)Lcom/fasterxml/jackson/databind/ObjectMapper;
            astore 1 /* mapper */
        start local 1 // com.fasterxml.jackson.databind.ObjectMapper mapper
         1: .line 151
            aload 1 /* mapper */
            aload 0 /* serializedPollingState */
            ldc Lcom/microsoft/azure/PollingState;
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.readValue:(Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object;
            checkcast com.microsoft.azure.PollingState
            astore 2 /* pollingState */
        start local 2 // com.microsoft.azure.PollingState pollingState
         2: .line 152
            goto 5
        end local 2 // com.microsoft.azure.PollingState pollingState
      StackMap locals: java.lang.String com.fasterxml.jackson.databind.ObjectMapper
      StackMap stack: java.io.IOException
         3: astore 3 /* exception */
        start local 3 // java.io.IOException exception
         4: .line 153
            new java.lang.RuntimeException
            dup
            aload 3 /* exception */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.io.IOException exception
        start local 2 // com.microsoft.azure.PollingState pollingState
         5: .line 155
      StackMap locals: com.microsoft.azure.PollingState
      StackMap stack:
            aload 2 /* pollingState */
            areturn
        end local 2 // com.microsoft.azure.PollingState pollingState
        end local 1 // com.fasterxml.jackson.databind.ObjectMapper mapper
        end local 0 // java.lang.String serializedPollingState
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    6     0  serializedPollingState  Ljava/lang/String;
            1    6     1                  mapper  Lcom/fasterxml/jackson/databind/ObjectMapper;
            2    3     2            pollingState  Lcom/microsoft/azure/PollingState<TResultT;>;
            5    6     2            pollingState  Lcom/microsoft/azure/PollingState<TResultT;>;
            4    5     3               exception  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.IOException
    Signature: <ResultT:Ljava/lang/Object;>(Ljava/lang/String;)Lcom/microsoft/azure/PollingState<TResultT;>;
    MethodParameters:
                        Name  Flags
      serializedPollingState  

  public static <ResultT> com.microsoft.azure.PollingState<ResultT> createFromPollingState(com.microsoft.azure.PollingState<?>, ResultT);
    descriptor: (Lcom/microsoft/azure/PollingState;Ljava/lang/Object;)Lcom/microsoft/azure/PollingState;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.microsoft.azure.PollingState other
        start local 1 // java.lang.Object result
         0: .line 167
            new com.microsoft.azure.PollingState
            dup
            invokespecial com.microsoft.azure.PollingState.<init>:()V
            astore 2 /* pollingState */
        start local 2 // com.microsoft.azure.PollingState pollingState
         1: .line 168
            aload 2 /* pollingState */
            aload 1 /* result */
            putfield com.microsoft.azure.PollingState.resource:Ljava/lang/Object;
         2: .line 169
            aload 2 /* pollingState */
            aload 0 /* other */
            invokevirtual com.microsoft.azure.PollingState.initialHttpMethod:()Ljava/lang/String;
            putfield com.microsoft.azure.PollingState.initialHttpMethod:Ljava/lang/String;
         3: .line 170
            aload 2 /* pollingState */
            aload 0 /* other */
            invokevirtual com.microsoft.azure.PollingState.status:()Ljava/lang/String;
            putfield com.microsoft.azure.PollingState.status:Ljava/lang/String;
         4: .line 171
            aload 2 /* pollingState */
            aload 0 /* other */
            invokevirtual com.microsoft.azure.PollingState.statusCode:()I
            putfield com.microsoft.azure.PollingState.statusCode:I
         5: .line 172
            aload 2 /* pollingState */
            aload 0 /* other */
            invokevirtual com.microsoft.azure.PollingState.azureAsyncOperationHeaderLink:()Ljava/lang/String;
            putfield com.microsoft.azure.PollingState.azureAsyncOperationHeaderLink:Ljava/lang/String;
         6: .line 173
            aload 2 /* pollingState */
            aload 0 /* other */
            invokevirtual com.microsoft.azure.PollingState.locationHeaderLink:()Ljava/lang/String;
            putfield com.microsoft.azure.PollingState.locationHeaderLink:Ljava/lang/String;
         7: .line 174
            aload 2 /* pollingState */
            aload 0 /* other */
            invokevirtual com.microsoft.azure.PollingState.putOrPatchResourceUri:()Ljava/lang/String;
            putfield com.microsoft.azure.PollingState.putOrPatchResourceUri:Ljava/lang/String;
         8: .line 175
            aload 2 /* pollingState */
            aload 0 /* other */
            getfield com.microsoft.azure.PollingState.defaultRetryTimeout:I
            putfield com.microsoft.azure.PollingState.defaultRetryTimeout:I
         9: .line 176
            aload 2 /* pollingState */
            aload 0 /* other */
            getfield com.microsoft.azure.PollingState.retryTimeout:I
            putfield com.microsoft.azure.PollingState.retryTimeout:I
        10: .line 177
            aload 2 /* pollingState */
            aload 0 /* other */
            getfield com.microsoft.azure.PollingState.loggingContext:Ljava/lang/String;
            putfield com.microsoft.azure.PollingState.loggingContext:Ljava/lang/String;
        11: .line 178
            aload 2 /* pollingState */
            aload 0 /* other */
            getfield com.microsoft.azure.PollingState.finalStateVia:Lcom/microsoft/azure/LongRunningFinalState;
            putfield com.microsoft.azure.PollingState.finalStateVia:Lcom/microsoft/azure/LongRunningFinalState;
        12: .line 179
            aload 2 /* pollingState */
            areturn
        end local 2 // com.microsoft.azure.PollingState pollingState
        end local 1 // java.lang.Object result
        end local 0 // com.microsoft.azure.PollingState other
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0         other  Lcom/microsoft/azure/PollingState<*>;
            0   13     1        result  TResultT;
            1   13     2  pollingState  Lcom/microsoft/azure/PollingState<TResultT;>;
    Signature: <ResultT:Ljava/lang/Object;>(Lcom/microsoft/azure/PollingState<*>;TResultT;)Lcom/microsoft/azure/PollingState<TResultT;>;
    MethodParameters:
        Name  Flags
      other   
      result  

  public java.lang.String serialize();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 186
            new com.fasterxml.jackson.databind.ObjectMapper
            dup
            invokespecial com.fasterxml.jackson.databind.ObjectMapper.<init>:()V
            invokestatic com.microsoft.azure.PollingState.initMapper:(Lcom/fasterxml/jackson/databind/ObjectMapper;)Lcom/fasterxml/jackson/databind/ObjectMapper;
            astore 1 /* mapper */
        start local 1 // com.fasterxml.jackson.databind.ObjectMapper mapper
         1: .line 188
            aload 1 /* mapper */
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.writeValueAsString:(Ljava/lang/Object;)Ljava/lang/String;
         2: areturn
         3: .line 189
      StackMap locals: com.microsoft.azure.PollingState com.fasterxml.jackson.databind.ObjectMapper
      StackMap stack: com.fasterxml.jackson.core.JsonProcessingException
            astore 2 /* exception */
        start local 2 // com.fasterxml.jackson.core.JsonProcessingException exception
         4: .line 190
            new java.lang.RuntimeException
            dup
            aload 2 /* exception */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // com.fasterxml.jackson.core.JsonProcessingException exception
        end local 1 // com.fasterxml.jackson.databind.ObjectMapper mapper
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lcom/microsoft/azure/PollingState<TT;>;
            1    5     1     mapper  Lcom/fasterxml/jackson/databind/ObjectMapper;
            4    5     2  exception  Lcom/fasterxml/jackson/core/JsonProcessingException;
      Exception table:
        from    to  target  type
           1     2       3  Class com.fasterxml.jackson.core.JsonProcessingException

  public T resource();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 200
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.resource:Ljava/lang/Object;
            areturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PollingState<TT;>;
    Signature: ()TT;

  public retrofit2.Response<okhttp3.ResponseBody> response();
    descriptor: ()Lretrofit2/Response;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 209
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.response:Lretrofit2/Response;
            areturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PollingState<TT;>;
    Signature: ()Lretrofit2/Response<Lokhttp3/ResponseBody;>;

  public java.lang.String status();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 218
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.status:Ljava/lang/String;
            areturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PollingState<TT;>;

  public int statusCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 227
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.statusCode:I
            ireturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PollingState<TT;>;

  public java.lang.String azureAsyncOperationHeaderLink();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 236
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.azureAsyncOperationHeaderLink:Ljava/lang/String;
            ifnull 2
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.azureAsyncOperationHeaderLink:Ljava/lang/String;
            invokevirtual java.lang.String.isEmpty:()Z
            ifne 2
         1: .line 237
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.azureAsyncOperationHeaderLink:Ljava/lang/String;
            areturn
         2: .line 239
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/microsoft/azure/PollingState<TT;>;

  public java.lang.String locationHeaderLink();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 248
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.locationHeaderLink:Ljava/lang/String;
            ifnull 2
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.locationHeaderLink:Ljava/lang/String;
            invokevirtual java.lang.String.isEmpty:()Z
            ifne 2
         1: .line 249
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.locationHeaderLink:Ljava/lang/String;
            areturn
         2: .line 251
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/microsoft/azure/PollingState<TT;>;

  void updateFromResponseOnPutPatch(retrofit2.Response<okhttp3.ResponseBody>);
    descriptor: (Lretrofit2/Response;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // retrofit2.Response response
         0: .line 262
            aconst_null
            astore 2 /* responseContent */
        start local 2 // java.lang.String responseContent
         1: .line 263
            aload 1 /* response */
            invokevirtual retrofit2.Response.body:()Ljava/lang/Object;
            ifnull 4
         2: .line 264
            aload 1 /* response */
            invokevirtual retrofit2.Response.body:()Ljava/lang/Object;
            checkcast okhttp3.ResponseBody
            invokevirtual okhttp3.ResponseBody.string:()Ljava/lang/String;
            astore 2 /* responseContent */
         3: .line 265
            aload 1 /* response */
            invokevirtual retrofit2.Response.body:()Ljava/lang/Object;
            checkcast okhttp3.ResponseBody
            invokevirtual okhttp3.ResponseBody.close:()V
         4: .line 268
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* responseContent */
            ifnull 5
            aload 2 /* responseContent */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 6
         5: .line 269
      StackMap locals:
      StackMap stack:
            new com.microsoft.azure.CloudException
            dup
            ldc "polling response does not contain a valid body"
            aload 1 /* response */
            invokespecial com.microsoft.azure.CloudException.<init>:(Ljava/lang/String;Lretrofit2/Response;)V
            athrow
         6: .line 272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.serializerAdapter:Lcom/microsoft/rest/protocol/SerializerAdapter;
            aload 2 /* responseContent */
            ldc Lcom/microsoft/azure/PollingState$PollingResource;
            invokeinterface com.microsoft.rest.protocol.SerializerAdapter.deserialize:(Ljava/lang/String;Ljava/lang/reflect/Type;)Ljava/lang/Object;
            checkcast com.microsoft.azure.PollingState$PollingResource
            astore 3 /* resource */
        start local 3 // com.microsoft.azure.PollingState$PollingResource resource
         7: .line 273
            aload 1 /* response */
            invokevirtual retrofit2.Response.code:()I
            istore 4 /* statusCode */
        start local 4 // int statusCode
         8: .line 274
            aload 3 /* resource */
            ifnull 11
            aload 3 /* resource */
            getfield com.microsoft.azure.PollingState$PollingResource.properties:Lcom/microsoft/azure/PollingState$PollingResource$Properties;
            ifnull 11
            aload 3 /* resource */
            getfield com.microsoft.azure.PollingState$PollingResource.properties:Lcom/microsoft/azure/PollingState$PollingResource$Properties;
            getfield com.microsoft.azure.PollingState$PollingResource$Properties.provisioningState:Ljava/lang/String;
            ifnull 11
         9: .line 275
            aload 0 /* this */
            aload 3 /* resource */
            getfield com.microsoft.azure.PollingState$PollingResource.properties:Lcom/microsoft/azure/PollingState$PollingResource$Properties;
            getfield com.microsoft.azure.PollingState$PollingResource$Properties.provisioningState:Ljava/lang/String;
            iload 4 /* statusCode */
            invokevirtual com.microsoft.azure.PollingState.withStatus:(Ljava/lang/String;I)Lcom/microsoft/azure/PollingState;
            pop
        10: .line 276
            goto 12
        11: .line 277
      StackMap locals: com.microsoft.azure.PollingState$PollingResource int
      StackMap stack:
            aload 0 /* this */
            ldc "Succeeded"
            iload 4 /* statusCode */
            invokevirtual com.microsoft.azure.PollingState.withStatus:(Ljava/lang/String;I)Lcom/microsoft/azure/PollingState;
            pop
        12: .line 280
      StackMap locals:
      StackMap stack:
            new com.microsoft.azure.CloudError
            dup
            invokespecial com.microsoft.azure.CloudError.<init>:()V
            astore 5 /* error */
        start local 5 // com.microsoft.azure.CloudError error
        13: .line 281
            aload 0 /* this */
            aload 5 /* error */
            invokevirtual com.microsoft.azure.PollingState.withErrorBody:(Lcom/microsoft/azure/CloudError;)Lcom/microsoft/azure/PollingState;
            pop
        14: .line 282
            aload 5 /* error */
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.status:()Ljava/lang/String;
            invokevirtual com.microsoft.azure.CloudError.withCode:(Ljava/lang/String;)Lcom/microsoft/azure/CloudError;
            pop
        15: .line 283
            aload 5 /* error */
            ldc "Long running operation failed"
            invokevirtual com.microsoft.azure.CloudError.withMessage:(Ljava/lang/String;)Lcom/microsoft/azure/CloudError;
            pop
        16: .line 284
            aload 0 /* this */
            aload 1 /* response */
            invokevirtual com.microsoft.azure.PollingState.withResponse:(Lretrofit2/Response;)Lcom/microsoft/azure/PollingState;
            pop
        17: .line 285
            aload 0 /* this */
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.serializerAdapter:Lcom/microsoft/rest/protocol/SerializerAdapter;
            aload 2 /* responseContent */
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.resourceType:Ljava/lang/reflect/Type;
            invokeinterface com.microsoft.rest.protocol.SerializerAdapter.deserialize:(Ljava/lang/String;Ljava/lang/reflect/Type;)Ljava/lang/Object;
            invokevirtual com.microsoft.azure.PollingState.withResource:(Ljava/lang/Object;)Lcom/microsoft/azure/PollingState;
            pop
        18: .line 286
            return
        end local 5 // com.microsoft.azure.CloudError error
        end local 4 // int statusCode
        end local 3 // com.microsoft.azure.PollingState$PollingResource resource
        end local 2 // java.lang.String responseContent
        end local 1 // retrofit2.Response response
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   19     0             this  Lcom/microsoft/azure/PollingState<TT;>;
            0   19     1         response  Lretrofit2/Response<Lokhttp3/ResponseBody;>;
            1   19     2  responseContent  Ljava/lang/String;
            7   19     3         resource  Lcom/microsoft/azure/PollingState$PollingResource;
            8   19     4       statusCode  I
           13   19     5            error  Lcom/microsoft/azure/CloudError;
    Exceptions:
      throws com.microsoft.azure.CloudException, java.io.IOException
    Signature: (Lretrofit2/Response<Lokhttp3/ResponseBody;>;)V
    MethodParameters:
          Name  Flags
      response  

  void updateFromResponseOnDeletePost(retrofit2.Response<okhttp3.ResponseBody>);
    descriptor: (Lretrofit2/Response;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // retrofit2.Response response
         0: .line 296
            aload 0 /* this */
            aload 1 /* response */
            invokevirtual com.microsoft.azure.PollingState.withResponse:(Lretrofit2/Response;)Lcom/microsoft/azure/PollingState;
            pop
         1: .line 297
            aconst_null
            astore 2 /* responseContent */
        start local 2 // java.lang.String responseContent
         2: .line 298
            aload 1 /* response */
            invokevirtual retrofit2.Response.body:()Ljava/lang/Object;
            ifnull 5
         3: .line 299
            aload 1 /* response */
            invokevirtual retrofit2.Response.body:()Ljava/lang/Object;
            checkcast okhttp3.ResponseBody
            invokevirtual okhttp3.ResponseBody.string:()Ljava/lang/String;
            astore 2 /* responseContent */
         4: .line 300
            aload 1 /* response */
            invokevirtual retrofit2.Response.body:()Ljava/lang/Object;
            checkcast okhttp3.ResponseBody
            invokevirtual okhttp3.ResponseBody.close:()V
         5: .line 302
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.serializerAdapter:Lcom/microsoft/rest/protocol/SerializerAdapter;
            aload 2 /* responseContent */
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.resourceType:Ljava/lang/reflect/Type;
            invokeinterface com.microsoft.rest.protocol.SerializerAdapter.deserialize:(Ljava/lang/String;Ljava/lang/reflect/Type;)Ljava/lang/Object;
            invokevirtual com.microsoft.azure.PollingState.withResource:(Ljava/lang/Object;)Lcom/microsoft/azure/PollingState;
            pop
         6: .line 303
            aload 0 /* this */
            ldc "Succeeded"
            aload 1 /* response */
            invokevirtual retrofit2.Response.code:()I
            invokevirtual com.microsoft.azure.PollingState.withStatus:(Ljava/lang/String;I)Lcom/microsoft/azure/PollingState;
            pop
         7: .line 304
            return
        end local 2 // java.lang.String responseContent
        end local 1 // retrofit2.Response response
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    8     0             this  Lcom/microsoft/azure/PollingState<TT;>;
            0    8     1         response  Lretrofit2/Response<Lokhttp3/ResponseBody;>;
            2    8     2  responseContent  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    Signature: (Lretrofit2/Response<Lokhttp3/ResponseBody;>;)V
    MethodParameters:
          Name  Flags
      response  

  int delayInMilliseconds();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 312
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.retryTimeout:I
            iflt 2
         1: .line 313
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.retryTimeout:I
            ireturn
         2: .line 315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.defaultRetryTimeout:I
            iflt 4
         3: .line 316
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.defaultRetryTimeout:I
            sipush 1000
            imul
            ireturn
         4: .line 318
      StackMap locals:
      StackMap stack:
            sipush 30000
            ireturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/microsoft/azure/PollingState<TT;>;

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

  boolean isStatusTerminal();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 332
            invokestatic com.microsoft.azure.AzureAsyncOperation.terminalStatuses:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2
            goto 4
      StackMap locals: com.microsoft.azure.PollingState top java.util.Iterator
      StackMap stack:
         1: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 1 /* terminalStatus */
        start local 1 // java.lang.String terminalStatus
         2: .line 333
            aload 1 /* terminalStatus */
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.status:()Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 4
         3: .line 334
            iconst_1
            ireturn
        end local 1 // java.lang.String terminalStatus
         4: .line 332
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         5: .line 337
            iconst_0
            ireturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lcom/microsoft/azure/PollingState<TT;>;
            2    4     1  terminalStatus  Ljava/lang/String;

  boolean isStatusFailed();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 344
            invokestatic com.microsoft.azure.AzureAsyncOperation.failedStatuses:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2
            goto 4
      StackMap locals: com.microsoft.azure.PollingState top java.util.Iterator
      StackMap stack:
         1: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 1 /* failedStatus */
        start local 1 // java.lang.String failedStatus
         2: .line 345
            aload 1 /* failedStatus */
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.status:()Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 4
         3: .line 346
            iconst_1
            ireturn
        end local 1 // java.lang.String failedStatus
         4: .line 344
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         5: .line 349
            iconst_0
            ireturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lcom/microsoft/azure/PollingState<TT;>;
            2    4     1  failedStatus  Ljava/lang/String;

  boolean isStatusSucceeded();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 356
            ldc "Succeeded"
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.status:()Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ireturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PollingState<TT;>;

  boolean resourcePending();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 360
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.statusCode:()I
            sipush 204
            if_icmpeq 6
         1: .line 361
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.isStatusSucceeded:()Z
            ifeq 6
         2: .line 362
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.resource:()Ljava/lang/Object;
            ifnonnull 6
         3: .line 363
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.resourceType:()Ljava/lang/reflect/Type;
            ldc Ljava/lang/Void;
            if_acmpeq 6
         4: .line 364
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.locationHeaderLink:()Ljava/lang/String;
            ifnull 6
         5: .line 360
            iconst_1
            goto 7
      StackMap locals:
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: istore 1 /* resourcePending */
        start local 1 // boolean resourcePending
         8: .line 365
            iload 1 /* resourcePending */
            ifeq 10
         9: .line 367
            iconst_1
            ireturn
        10: .line 369
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.finalStateVia:()Lcom/microsoft/azure/LongRunningFinalState;
            getstatic com.microsoft.azure.LongRunningFinalState.LOCATION:Lcom/microsoft/azure/LongRunningFinalState;
            if_acmpne 11
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        11: iconst_0
            ireturn
        end local 1 // boolean resourcePending
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   12     0             this  Lcom/microsoft/azure/PollingState<TT;>;
            8   12     1  resourcePending  Z

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

  com.microsoft.azure.PollingState<T> withStatus(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/microsoft/azure/PollingState;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // java.lang.String status
         0: .line 389
            aload 0 /* this */
            aload 1 /* status */
            iconst_0
            invokevirtual com.microsoft.azure.PollingState.withStatus:(Ljava/lang/String;I)Lcom/microsoft/azure/PollingState;
            areturn
        end local 1 // java.lang.String status
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/microsoft/azure/PollingState<TT;>;
            0    1     1  status  Ljava/lang/String;
    Exceptions:
      throws java.lang.IllegalArgumentException
    Signature: (Ljava/lang/String;)Lcom/microsoft/azure/PollingState<TT;>;
    MethodParameters:
        Name  Flags
      status  

  com.microsoft.azure.PollingState<T> withStatus(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Lcom/microsoft/azure/PollingState;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // java.lang.String status
        start local 2 // int statusCode
         0: .line 400
            aload 1 /* status */
            ifnonnull 2
         1: .line 401
            new java.lang.IllegalArgumentException
            dup
            ldc "Status is null."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 403
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* status */
            putfield com.microsoft.azure.PollingState.status:Ljava/lang/String;
         3: .line 404
            aload 0 /* this */
            iload 2 /* statusCode */
            putfield com.microsoft.azure.PollingState.statusCode:I
         4: .line 405
            aload 0 /* this */
            areturn
        end local 2 // int statusCode
        end local 1 // java.lang.String status
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/microsoft/azure/PollingState<TT;>;
            0    5     1      status  Ljava/lang/String;
            0    5     2  statusCode  I
    Exceptions:
      throws java.lang.IllegalArgumentException
    Signature: (Ljava/lang/String;I)Lcom/microsoft/azure/PollingState<TT;>;
    MethodParameters:
            Name  Flags
      status      
      statusCode  

  com.microsoft.azure.PollingState<T> withResponse(retrofit2.Response<okhttp3.ResponseBody>);
    descriptor: (Lretrofit2/Response;)Lcom/microsoft/azure/PollingState;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // retrofit2.Response response
         0: .line 414
            aload 0 /* this */
            aload 1 /* response */
            putfield com.microsoft.azure.PollingState.response:Lretrofit2/Response;
         1: .line 415
            aload 0 /* this */
            aload 1 /* response */
            invokevirtual com.microsoft.azure.PollingState.withPollingUrlFromResponse:(Lretrofit2/Response;)Lcom/microsoft/azure/PollingState;
            pop
         2: .line 416
            aload 0 /* this */
            aload 1 /* response */
            invokevirtual com.microsoft.azure.PollingState.withPollingRetryTimeoutFromResponse:(Lretrofit2/Response;)Lcom/microsoft/azure/PollingState;
            pop
         3: .line 417
            aload 0 /* this */
            areturn
        end local 1 // retrofit2.Response response
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/microsoft/azure/PollingState<TT;>;
            0    4     1  response  Lretrofit2/Response<Lokhttp3/ResponseBody;>;
    Signature: (Lretrofit2/Response<Lokhttp3/ResponseBody;>;)Lcom/microsoft/azure/PollingState<TT;>;
    MethodParameters:
          Name  Flags
      response  

  com.microsoft.azure.PollingState<T> withPollingUrlFromResponse(retrofit2.Response<okhttp3.ResponseBody>);
    descriptor: (Lretrofit2/Response;)Lcom/microsoft/azure/PollingState;
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // retrofit2.Response response
         0: .line 421
            aload 1 /* response */
            ifnull 7
         1: .line 422
            aload 1 /* response */
            invokevirtual retrofit2.Response.headers:()Lokhttp3/Headers;
            ldc "Azure-AsyncOperation"
            invokevirtual okhttp3.Headers.get:(Ljava/lang/String;)Ljava/lang/String;
            astore 2 /* asyncHeader */
        start local 2 // java.lang.String asyncHeader
         2: .line 423
            aload 1 /* response */
            invokevirtual retrofit2.Response.headers:()Lokhttp3/Headers;
            ldc "Location"
            invokevirtual okhttp3.Headers.get:(Ljava/lang/String;)Ljava/lang/String;
            astore 3 /* locationHeader */
        start local 3 // java.lang.String locationHeader
         3: .line 424
            aload 2 /* asyncHeader */
            ifnull 5
         4: .line 425
            aload 0 /* this */
            aload 2 /* asyncHeader */
            putfield com.microsoft.azure.PollingState.azureAsyncOperationHeaderLink:Ljava/lang/String;
         5: .line 427
      StackMap locals: java.lang.String java.lang.String
      StackMap stack:
            aload 3 /* locationHeader */
            ifnull 7
         6: .line 428
            aload 0 /* this */
            aload 3 /* locationHeader */
            putfield com.microsoft.azure.PollingState.locationHeaderLink:Ljava/lang/String;
        end local 3 // java.lang.String locationHeader
        end local 2 // java.lang.String asyncHeader
         7: .line 431
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // retrofit2.Response response
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Lcom/microsoft/azure/PollingState<TT;>;
            0    8     1        response  Lretrofit2/Response<Lokhttp3/ResponseBody;>;
            2    7     2     asyncHeader  Ljava/lang/String;
            3    7     3  locationHeader  Ljava/lang/String;
    Signature: (Lretrofit2/Response<Lokhttp3/ResponseBody;>;)Lcom/microsoft/azure/PollingState<TT;>;
    MethodParameters:
          Name  Flags
      response  

  com.microsoft.azure.PollingState<T> withPollingRetryTimeoutFromResponse(retrofit2.Response<okhttp3.ResponseBody>);
    descriptor: (Lretrofit2/Response;)Lcom/microsoft/azure/PollingState;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // retrofit2.Response response
         0: .line 435
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.response:Lretrofit2/Response;
            ifnull 3
            aload 1 /* response */
            invokevirtual retrofit2.Response.headers:()Lokhttp3/Headers;
            ldc "Retry-After"
            invokevirtual okhttp3.Headers.get:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 3
         1: .line 436
            aload 0 /* this */
            aload 1 /* response */
            invokevirtual retrofit2.Response.headers:()Lokhttp3/Headers;
            ldc "Retry-After"
            invokevirtual okhttp3.Headers.get:(Ljava/lang/String;)Ljava/lang/String;
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            sipush 1000
            imul
            putfield com.microsoft.azure.PollingState.retryTimeout:I
         2: .line 437
            aload 0 /* this */
            areturn
         3: .line 439
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            putfield com.microsoft.azure.PollingState.retryTimeout:I
         4: .line 440
            aload 0 /* this */
            areturn
        end local 1 // retrofit2.Response response
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/microsoft/azure/PollingState<TT;>;
            0    5     1  response  Lretrofit2/Response<Lokhttp3/ResponseBody;>;
    Signature: (Lretrofit2/Response<Lokhttp3/ResponseBody;>;)Lcom/microsoft/azure/PollingState<TT;>;
    MethodParameters:
          Name  Flags
      response  

  com.microsoft.azure.PollingState<T> withPutOrPatchResourceUri(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/microsoft/azure/PollingState;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // java.lang.String uri
         0: .line 444
            aload 0 /* this */
            aload 1 /* uri */
            putfield com.microsoft.azure.PollingState.putOrPatchResourceUri:Ljava/lang/String;
         1: .line 445
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String uri
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/PollingState<TT;>;
            0    2     1   uri  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lcom/microsoft/azure/PollingState<TT;>;
    MethodParameters:
      Name  Flags
      uri   final

  com.microsoft.azure.PollingState<T> withResource(T);
    descriptor: (Ljava/lang/Object;)Lcom/microsoft/azure/PollingState;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // java.lang.Object resource
         0: .line 454
            aload 0 /* this */
            aload 1 /* resource */
            putfield com.microsoft.azure.PollingState.resource:Ljava/lang/Object;
         1: .line 455
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object resource
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/microsoft/azure/PollingState<TT;>;
            0    2     1  resource  TT;
    Signature: (TT;)Lcom/microsoft/azure/PollingState<TT;>;
    MethodParameters:
          Name  Flags
      resource  

  java.lang.reflect.Type resourceType();
    descriptor: ()Ljava/lang/reflect/Type;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 462
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.resourceType:Ljava/lang/reflect/Type;
            areturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PollingState<TT;>;

  com.microsoft.azure.LongRunningFinalState finalStateVia();
    descriptor: ()Lcom/microsoft/azure/LongRunningFinalState;
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 469
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.initialHttpMethod:()Ljava/lang/String;
            ldc "POST"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 4
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.resourceType:()Ljava/lang/reflect/Type;
            ldc Ljava/lang/Void;
            if_acmpeq 4
         1: .line 472
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.locationHeaderLink:()Ljava/lang/String;
            ifnull 4
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.azureAsyncOperationHeaderLink:()Ljava/lang/String;
            ifnull 4
         2: .line 476
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.finalStateVia:Lcom/microsoft/azure/LongRunningFinalState;
            getstatic com.microsoft.azure.LongRunningFinalState.LOCATION:Lcom/microsoft/azure/LongRunningFinalState;
            if_acmpne 4
         3: .line 482
            getstatic com.microsoft.azure.LongRunningFinalState.LOCATION:Lcom/microsoft/azure/LongRunningFinalState;
            areturn
         4: .line 486
      StackMap locals:
      StackMap stack:
            getstatic com.microsoft.azure.LongRunningFinalState.DEFAULT:Lcom/microsoft/azure/LongRunningFinalState;
            areturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/microsoft/azure/PollingState<TT;>;

  com.microsoft.azure.PollingState<T> withResourceType(java.lang.reflect.Type);
    descriptor: (Ljava/lang/reflect/Type;)Lcom/microsoft/azure/PollingState;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // java.lang.reflect.Type resourceType
         0: .line 495
            aload 0 /* this */
            aload 1 /* resourceType */
            putfield com.microsoft.azure.PollingState.resourceType:Ljava/lang/reflect/Type;
         1: .line 496
            aload 0 /* this */
            areturn
        end local 1 // java.lang.reflect.Type resourceType
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lcom/microsoft/azure/PollingState<TT;>;
            0    2     1  resourceType  Ljava/lang/reflect/Type;
    Signature: (Ljava/lang/reflect/Type;)Lcom/microsoft/azure/PollingState<TT;>;
    MethodParameters:
              Name  Flags
      resourceType  

  com.microsoft.azure.CloudError errorBody();
    descriptor: ()Lcom/microsoft/azure/CloudError;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 505
            aload 0 /* this */
            getfield com.microsoft.azure.PollingState.error:Lcom/microsoft/azure/CloudError;
            areturn
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PollingState<TT;>;

  com.microsoft.azure.PollingState<T> withErrorBody(com.microsoft.azure.CloudError);
    descriptor: (Lcom/microsoft/azure/CloudError;)Lcom/microsoft/azure/PollingState;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // com.microsoft.azure.CloudError error
         0: .line 514
            aload 0 /* this */
            aload 1 /* error */
            putfield com.microsoft.azure.PollingState.error:Lcom/microsoft/azure/CloudError;
         1: .line 515
            aload 0 /* this */
            areturn
        end local 1 // com.microsoft.azure.CloudError error
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/microsoft/azure/PollingState<TT;>;
            0    2     1  error  Lcom/microsoft/azure/CloudError;
    Signature: (Lcom/microsoft/azure/CloudError;)Lcom/microsoft/azure/PollingState<TT;>;
    MethodParameters:
       Name  Flags
      error  

  com.microsoft.azure.PollingState<T> withSerializerAdapter(com.microsoft.rest.protocol.SerializerAdapter<?>);
    descriptor: (Lcom/microsoft/rest/protocol/SerializerAdapter;)Lcom/microsoft/azure/PollingState;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PollingState this
        start local 1 // com.microsoft.rest.protocol.SerializerAdapter serializerAdapter
         0: .line 524
            aload 0 /* this */
            aload 1 /* serializerAdapter */
            putfield com.microsoft.azure.PollingState.serializerAdapter:Lcom/microsoft/rest/protocol/SerializerAdapter;
         1: .line 525
            aload 0 /* this */
            areturn
        end local 1 // com.microsoft.rest.protocol.SerializerAdapter serializerAdapter
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lcom/microsoft/azure/PollingState<TT;>;
            0    2     1  serializerAdapter  Lcom/microsoft/rest/protocol/SerializerAdapter<*>;
    Signature: (Lcom/microsoft/rest/protocol/SerializerAdapter<*>;)Lcom/microsoft/azure/PollingState<TT;>;
    MethodParameters:
                   Name  Flags
      serializerAdapter  

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

  void throwCloudExceptionIfInFailedState();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PollingState this
         0: .line 539
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.isStatusFailed:()Z
            ifeq 4
         1: .line 540
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.errorBody:()Lcom/microsoft/azure/CloudError;
            ifnull 3
         2: .line 541
            new com.microsoft.azure.CloudException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Async operation failed with provisioning state: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.status:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.response:()Lretrofit2/Response;
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.errorBody:()Lcom/microsoft/azure/CloudError;
            invokespecial com.microsoft.azure.CloudException.<init>:(Ljava/lang/String;Lretrofit2/Response;Lcom/microsoft/azure/CloudError;)V
            athrow
         3: .line 543
      StackMap locals:
      StackMap stack:
            new com.microsoft.azure.CloudException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Async operation failed with provisioning state: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.status:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PollingState.response:()Lretrofit2/Response;
            invokespecial com.microsoft.azure.CloudException.<init>:(Ljava/lang/String;Lretrofit2/Response;)V
            athrow
         4: .line 546
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.microsoft.azure.PollingState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/microsoft/azure/PollingState<TT;>;

  private static com.fasterxml.jackson.databind.ObjectMapper initMapper(com.fasterxml.jackson.databind.ObjectMapper);
    descriptor: (Lcom/fasterxml/jackson/databind/ObjectMapper;)Lcom/fasterxml/jackson/databind/ObjectMapper;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.databind.ObjectMapper mapper
         0: .line 555
            aload 0 /* mapper */
            getstatic com.fasterxml.jackson.databind.SerializationFeature.WRITE_DATES_AS_TIMESTAMPS:Lcom/fasterxml/jackson/databind/SerializationFeature;
            iconst_0
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.configure:(Lcom/fasterxml/jackson/databind/SerializationFeature;Z)Lcom/fasterxml/jackson/databind/ObjectMapper;
         1: .line 556
            getstatic com.fasterxml.jackson.databind.SerializationFeature.WRITE_EMPTY_JSON_ARRAYS:Lcom/fasterxml/jackson/databind/SerializationFeature;
            iconst_1
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.configure:(Lcom/fasterxml/jackson/databind/SerializationFeature;Z)Lcom/fasterxml/jackson/databind/ObjectMapper;
         2: .line 557
            getstatic com.fasterxml.jackson.databind.DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT:Lcom/fasterxml/jackson/databind/DeserializationFeature;
            iconst_1
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.configure:(Lcom/fasterxml/jackson/databind/DeserializationFeature;Z)Lcom/fasterxml/jackson/databind/ObjectMapper;
         3: .line 558
            getstatic com.fasterxml.jackson.databind.DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES:Lcom/fasterxml/jackson/databind/DeserializationFeature;
            iconst_0
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.configure:(Lcom/fasterxml/jackson/databind/DeserializationFeature;Z)Lcom/fasterxml/jackson/databind/ObjectMapper;
         4: .line 559
            getstatic com.fasterxml.jackson.databind.DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY:Lcom/fasterxml/jackson/databind/DeserializationFeature;
            iconst_1
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.configure:(Lcom/fasterxml/jackson/databind/DeserializationFeature;Z)Lcom/fasterxml/jackson/databind/ObjectMapper;
         5: .line 560
            getstatic com.fasterxml.jackson.annotation.JsonInclude$Include.NON_NULL:Lcom/fasterxml/jackson/annotation/JsonInclude$Include;
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.setSerializationInclusion:(Lcom/fasterxml/jackson/annotation/JsonInclude$Include;)Lcom/fasterxml/jackson/databind/ObjectMapper;
         6: .line 561
            new com.fasterxml.jackson.datatype.joda.JodaModule
            dup
            invokespecial com.fasterxml.jackson.datatype.joda.JodaModule.<init>:()V
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.registerModule:(Lcom/fasterxml/jackson/databind/Module;)Lcom/fasterxml/jackson/databind/ObjectMapper;
         7: .line 562
            invokestatic com.microsoft.rest.serializer.ByteArraySerializer.getModule:()Lcom/fasterxml/jackson/databind/module/SimpleModule;
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.registerModule:(Lcom/fasterxml/jackson/databind/Module;)Lcom/fasterxml/jackson/databind/ObjectMapper;
         8: .line 563
            invokestatic com.microsoft.rest.serializer.Base64UrlSerializer.getModule:()Lcom/fasterxml/jackson/databind/module/SimpleModule;
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.registerModule:(Lcom/fasterxml/jackson/databind/Module;)Lcom/fasterxml/jackson/databind/ObjectMapper;
         9: .line 564
            invokestatic com.microsoft.rest.serializer.DateTimeSerializer.getModule:()Lcom/fasterxml/jackson/databind/module/SimpleModule;
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.registerModule:(Lcom/fasterxml/jackson/databind/Module;)Lcom/fasterxml/jackson/databind/ObjectMapper;
        10: .line 565
            invokestatic com.microsoft.rest.serializer.DateTimeRfc1123Serializer.getModule:()Lcom/fasterxml/jackson/databind/module/SimpleModule;
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.registerModule:(Lcom/fasterxml/jackson/databind/Module;)Lcom/fasterxml/jackson/databind/ObjectMapper;
        11: .line 566
            invokestatic com.microsoft.rest.serializer.HeadersSerializer.getModule:()Lcom/fasterxml/jackson/databind/module/SimpleModule;
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.registerModule:(Lcom/fasterxml/jackson/databind/Module;)Lcom/fasterxml/jackson/databind/ObjectMapper;
            pop
        12: .line 567
            aload 0 /* mapper */
            aload 0 /* mapper */
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.getSerializationConfig:()Lcom/fasterxml/jackson/databind/SerializationConfig;
            invokevirtual com.fasterxml.jackson.databind.SerializationConfig.getDefaultVisibilityChecker:()Lcom/fasterxml/jackson/databind/introspect/VisibilityChecker;
        13: .line 568
            getstatic com.fasterxml.jackson.annotation.JsonAutoDetect$Visibility.ANY:Lcom/fasterxml/jackson/annotation/JsonAutoDetect$Visibility;
            invokeinterface com.fasterxml.jackson.databind.introspect.VisibilityChecker.withFieldVisibility:(Lcom/fasterxml/jackson/annotation/JsonAutoDetect$Visibility;)Lcom/fasterxml/jackson/databind/introspect/VisibilityChecker;
            checkcast com.fasterxml.jackson.databind.introspect.VisibilityChecker
        14: .line 569
            getstatic com.fasterxml.jackson.annotation.JsonAutoDetect$Visibility.NONE:Lcom/fasterxml/jackson/annotation/JsonAutoDetect$Visibility;
            invokeinterface com.fasterxml.jackson.databind.introspect.VisibilityChecker.withSetterVisibility:(Lcom/fasterxml/jackson/annotation/JsonAutoDetect$Visibility;)Lcom/fasterxml/jackson/databind/introspect/VisibilityChecker;
            checkcast com.fasterxml.jackson.databind.introspect.VisibilityChecker
        15: .line 570
            getstatic com.fasterxml.jackson.annotation.JsonAutoDetect$Visibility.NONE:Lcom/fasterxml/jackson/annotation/JsonAutoDetect$Visibility;
            invokeinterface com.fasterxml.jackson.databind.introspect.VisibilityChecker.withGetterVisibility:(Lcom/fasterxml/jackson/annotation/JsonAutoDetect$Visibility;)Lcom/fasterxml/jackson/databind/introspect/VisibilityChecker;
            checkcast com.fasterxml.jackson.databind.introspect.VisibilityChecker
        16: .line 571
            getstatic com.fasterxml.jackson.annotation.JsonAutoDetect$Visibility.NONE:Lcom/fasterxml/jackson/annotation/JsonAutoDetect$Visibility;
            invokeinterface com.fasterxml.jackson.databind.introspect.VisibilityChecker.withIsGetterVisibility:(Lcom/fasterxml/jackson/annotation/JsonAutoDetect$Visibility;)Lcom/fasterxml/jackson/databind/introspect/VisibilityChecker;
        17: .line 567
            invokevirtual com.fasterxml.jackson.databind.ObjectMapper.setVisibility:(Lcom/fasterxml/jackson/databind/introspect/VisibilityChecker;)Lcom/fasterxml/jackson/databind/ObjectMapper;
            pop
        18: .line 572
            aload 0 /* mapper */
            areturn
        end local 0 // com.fasterxml.jackson.databind.ObjectMapper mapper
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0  mapper  Lcom/fasterxml/jackson/databind/ObjectMapper;
    MethodParameters:
        Name  Flags
      mapper  
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "PollingState.java"
NestMembers:
  com.microsoft.azure.PollingState$PollingResource  com.microsoft.azure.PollingState$PollingResource$Properties
InnerClasses:
  public final Visibility = com.fasterxml.jackson.annotation.JsonAutoDetect$Visibility of com.fasterxml.jackson.annotation.JsonAutoDetect
  public final Include = com.fasterxml.jackson.annotation.JsonInclude$Include of com.fasterxml.jackson.annotation.JsonInclude
  private PollingResource = com.microsoft.azure.PollingState$PollingResource of com.microsoft.azure.PollingState
  private Properties = com.microsoft.azure.PollingState$PollingResource$Properties of com.microsoft.azure.PollingState$PollingResource