Class AccessContinue

java.lang.Object
io.fliqa.client.interledger.model.AccessContinue

public class AccessContinue extends Object
Represents the response from a GNAP access continuation request.

This class contains the information returned by the authorization server when a client continues an access request that was previously initiated. It includes the access token, the continuation URI, and optionally a wait time for polling-based interactions.

Access continuation is used in the Grant Negotiation and Authorization Protocol (GNAP) to allow clients to continue a previously started access request without having to restart the entire authorization flow.

Since:
1.0
See Also:
  • Field Details

    • access

      public AccessToken access
      The access token granted by the authorization server.

      This token contains the actual access credentials that the client can use to access protected resources. It includes the token value, expiration information, and the scope of access granted.

      See Also:
    • uri

      public URI uri
      The URI for continuing the access request.

      This URI is used by the client to continue the access request in future interactions. It may be used for token refresh, access continuation, or other follow-up operations as defined by the authorization server.

      Example: "https://ilp.interledger-test.dev/gnap/continue/12345"

  • Constructor Details

    • AccessContinue

      public AccessContinue()