| Package | Description |
|---|---|
| com.authlete.common.api |
The definition of Authlete API (
AuthleteApi) and the factory class (AuthleteApiFactory). |
| com.authlete.common.dto |
Requests to and responses from Authlete APIs and some data structures.
|
| Modifier and Type | Method and Description |
|---|---|
AuthorizationIssueResponse |
AuthleteApi.authorizationIssue(AuthorizationIssueRequest request)
Call Authlete's
/auth/authorization/issue API. |
| Modifier and Type | Method and Description |
|---|---|
AuthorizationIssueRequest |
AuthorizationIssueRequest.setAcr(String acr)
Set the value of
"acr" which is the authentication
context class reference value which the end-user authentication
satisfied. |
AuthorizationIssueRequest |
AuthorizationIssueRequest.setAuthTime(long authTime)
Set the value of
"authTime" which is the time
when the authentication of the end-user occurred. |
AuthorizationIssueRequest |
AuthorizationIssueRequest.setClaims(Map<String,Object> claims)
Set the value of
"claims" which is the claims of the subject. |
AuthorizationIssueRequest |
AuthorizationIssueRequest.setClaims(String claims)
Set the value of
"claims" which is the claims of the subject
in JSON format. |
AuthorizationIssueRequest |
AuthorizationIssueRequest.setProperties(Property[] properties)
Set extra properties to associate with an access token and/or
an authorization code which will be issued by this request.
|
AuthorizationIssueRequest |
AuthorizationIssueRequest.setScopes(String[] scopes)
Set scopes to associate with an authorization code and/or an access token.
|
AuthorizationIssueRequest |
AuthorizationIssueRequest.setSub(String sub)
Set the value of the
sub claim that should be used in
the ID token which is to be issued. |
AuthorizationIssueRequest |
AuthorizationIssueRequest.setSubject(String subject)
Set the value of
"subject" which is the subject
(= a user account managed by the service) who has granted
authorization to the client application. |
AuthorizationIssueRequest |
AuthorizationIssueRequest.setTicket(String ticket)
Set the value of
"ticket" which is the ticket
issued by Authlete's /auth/authorization API
to the service implementation. |
Copyright © 2019. All rights reserved.