Interface AuthorizationManagementRequest

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getState()
      An opaque value used by the client to maintain state between the request and callback.
      JSONObject jsonSerialize()
      Produces a JSON representation of the request for persistent storage or local transmission (e.g.
      String jsonSerializeString()
      Produces a JSON string representation of the request for persistent storage or local transmission (e.g.
      Uri toUri()
      Produces a request URI, that can be used to dispatch the request.
    • Method Detail

      • jsonSerialize

        JSONObject jsonSerialize()
        Produces a JSON representation of the request for persistent storage or local transmission (e.g.

        between activities).

      • jsonSerializeString

        String jsonSerializeString()
        Produces a JSON string representation of the request for persistent storage or local transmission (e.g.

        between activities). This method is just a convenience wrapper for jsonSerialize(), converting the JSON object to its string form.

      • getState

        String getState()
        An opaque value used by the client to maintain state between the request and callback.
      • toUri

        Uri toUri()
        Produces a request URI, that can be used to dispatch the request.