Searched defs:readDeviceCode (Results 1 - 6 of 6) sorted by relevance

/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DTokenStore.java237 DeviceCode readDeviceCode(String clientId, String code, OAuth2Request request) method in interface:TokenStore
248 DeviceCode readDeviceCode(String userCode, OAuth2Request request) method in interface:TokenStore
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DTokenStore.java334 DeviceCode readDeviceCode(String clientId, String code, OAuth2Request request) method in interface:TokenStore
345 DeviceCode readDeviceCode(String userCode, OAuth2Request request) method in interface:TokenStore
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMTokenStore.java259 public DeviceCode readDeviceCode(String clientId, String code, OAuth2Request request) throws ServerException, method in class:OpenAMTokenStore
262 return statelessTokenStore.readDeviceCode(clientId, code, request);
264 return statefulTokenStore.readDeviceCode(clientId, code, request);
269 public DeviceCode readDeviceCode(String userCode, OAuth2Request request) throws ServerException, NotFoundException, method in class:OpenAMTokenStore
272 return statelessTokenStore.readDeviceCode(userCode, request);
274 return statefulTokenStore.readDeviceCode(userCode, request);
H A DStatefulTokenStore.java913 readDeviceCode(result, request);
962 public DeviceCode readDeviceCode(String clientId, String code, OAuth2Request request) throws ServerException, method in class:StatefulTokenStore
988 public DeviceCode readDeviceCode(String userCode, OAuth2Request request) throws ServerException, NotFoundException, method in class:StatefulTokenStore
1015 readDeviceCode(code.getClientId(), code.getDeviceCode(), request);
1026 readDeviceCode(clientId, code, request);
H A DStatelessTokenStore.java614 public DeviceCode readDeviceCode(String clientId, String code, OAuth2Request request) throws ServerException, method in class:StatelessTokenStore
616 return statefulTokenStore.readDeviceCode(clientId, code, request);
620 public DeviceCode readDeviceCode(String userCode, OAuth2Request request) throws ServerException, NotFoundException, method in class:StatelessTokenStore
622 return statefulTokenStore.readDeviceCode(userCode, request);
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMTokenStore.java841 readDeviceCode(codeBuilder.toString(), request);
885 public DeviceCode readDeviceCode(String clientId, String code, OAuth2Request request) throws ServerException, method in class:OpenAMTokenStore
911 public DeviceCode readDeviceCode(String userCode, OAuth2Request request) throws ServerException, NotFoundException, method in class:OpenAMTokenStore
938 readDeviceCode(code.getClientId(), code.getDeviceCode(), request);
949 readDeviceCode(clientId, code, request);

Completed in 56 milliseconds