Class AccessContinue
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 Summary
FieldsModifier and TypeFieldDescriptionThe access token granted by the authorization server.The URI for continuing the access request. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
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
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()
-