Modifier and Type | Method and Description |
---|---|
AuthorizationClientHelper |
AuthorizationClientHelper.Builder.ClientHelperBuilder.build() |
AccessToken |
AuthorizationClientHelper.getAccessToken()
Authenticates the client with the Authorization Service, obtains an access token and returns it.
|
AccessToken |
AccessTokenProvider.getAccessToken()
Authenticates the client with the Authorization Service and returns the token.
|
AccessToken |
AuthorizationClientHelper.getAccessToken(List<String> scopes)
Authenticates the client with the Authorization Service, obtains an access token and returns it; the client can request for specific
scopes during authentication by using the "scopes" parameter.
|
AccessToken |
AccessTokenProvider.getAccessToken(List<String> scopes)
Same function as above, but allows client to ask for specific scopes in the request
|
AccessToken |
AuthorizationClientHelper.getAccessTokenForUser(javax.servlet.ServletRequest servletRequest)
Authenticates the client (along with the user's auth code) with the Authorization Service, obtains an access token and returns it.
|
AccessToken |
AccessTokenProvider.getAccessTokenForUser(javax.servlet.ServletRequest servletRequest) |
AccessToken |
AuthorizationClientHelper.getAccessTokenForUser(String userName,
String userPassword)
Authenticates the client and the end user with the Authorization Service, obtains an access token and returns it.
|
AccessToken |
AccessTokenProvider.getAccessTokenForUser(String userName,
String userPassword)
Authenticates the client and the user with the Authorization Service and returns the token.
|
AccessToken |
AuthorizationClientHelper.getAccessTokenForUser(String userName,
String userPassword,
List<String> scopes)
Authenticates the client and the end user with the Authorization Service, obtains an access token and returns it; the client can
request for specific scopes during authentication by using the "scopes" parameter.
|
AccessToken |
AccessTokenProvider.getAccessTokenForUser(String userName,
String userPassword,
List<String> scopes)
Same function as above, but allows client to ask for specific scopes in the request
|
TokenAggregate |
AuthorizationClientHelper.getTokenAggregate()
Authenticates the client with the Authorization Service and obtains a token aggregate.
|
TokenAggregate |
AccessTokenProvider.getTokenAggregate() |
TokenAggregate |
AuthorizationClientHelper.getTokenAggregate(List<String> scopes)
Authenticates the client with the Authorization Service, obtains a token aggregate and returns it; the client can request for
specific scopes during authentication by using the "scopes" parameter.
|
TokenAggregate |
AccessTokenProvider.getTokenAggregate(List<String> scopes) |
TokenAggregate |
AuthorizationClientHelper.getTokenAggregate(String refreshToken)
Authenticates the client with the Authorization Service, obtains a token aggregate using a refresh token and returns it.
|
TokenAggregate |
AccessTokenProvider.getTokenAggregate(String refreshToken) |
TokenAggregate |
AuthorizationClientHelper.getTokenAggregateForUser(javax.servlet.ServletRequest servletRequest)
Authenticates the client (along with the user's auth code) with the Authorization Service, obtains a token aggregate and returns it.
|
TokenAggregate |
AccessTokenProvider.getTokenAggregateForUser(javax.servlet.ServletRequest servletRequest)
Authenticates the client (along with the user's auth code) with the Authorization Service and returns the token aggregate.
|
TokenAggregate |
AuthorizationClientHelper.getTokenAggregateForUser(String userName,
String userPassword)
Authenticates the client and the end user with the Authorization Service, obtains a token aggregate and returns it.
|
TokenAggregate |
AccessTokenProvider.getTokenAggregateForUser(String userName,
String userPassword)
Authenticates the client and the user with the Authorization Service and returns the token aggregate.
|
TokenAggregate |
AuthorizationClientHelper.getTokenAggregateForUser(String userName,
String userPassword,
List<String> scopes)
Authenticates the client and the end user with the Authorization Service, obtains an access token and returns it; the client can
request for specific scopes during authentication by using the "scopes" parameter.
|
TokenAggregate |
AccessTokenProvider.getTokenAggregateForUser(String userName,
String userPassword,
List<String> scopes)
Authenticates the client and the user with the Authorization Service and returns the token aggregate.
|
void |
AuthorizationClientHelper.shutdown()
Shuts down the helper library and releases any system resources associated with it.
|
void |
AccessTokenProvider.shutDown()
API to release any system resources associated.
|
Copyright © 2023 Avaya. All rights reserved.