Searched defs:DeviceCode (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DDeviceCode.java38 public class DeviceCode extends JsonValue implements Token { class in inherits:JsonValue,Token
46 public DeviceCode(JsonValue token) throws InvalidGrantException { method in class:DeviceCode
48 if (!OAuth2Constants.DeviceCode.DEVICE_CODE.equals(getTokenName()) || getTokenId() == null ||
54 public DeviceCode(String deviceCode, String userCode, String resourceOwnerId, String clientId, String nonce, method in class:DeviceCode
59 setStringProperty(TOKEN_NAME, OAuth2Constants.DeviceCode.DEVICE_CODE);
61 setStringProperty(OAuth2Constants.DeviceCode.USER_CODE, userCode);
93 return getStringProperty(OAuth2Constants.DeviceCode.USER_CODE);
H A DOAuth2Constants.java823 public class DeviceCode { class in class:OAuth2Constants
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DDeviceCode.java40 public class DeviceCode extends JsonValue implements Token { class in inherits:JsonValue,Token
48 public DeviceCode(JsonValue token) throws InvalidGrantException { method in class:DeviceCode
50 if (!OAuth2Constants.DeviceCode.DEVICE_CODE.equals(getTokenName()) || getTokenId() == null ||
56 public DeviceCode(String deviceCode, String userCode, String resourceOwnerId, String clientId, String nonce, method in class:DeviceCode
61 setStringProperty(TOKEN_NAME, OAuth2Constants.DeviceCode.DEVICE_CODE);
63 setStringProperty(OAuth2Constants.DeviceCode.USER_CODE, userCode);
96 return getStringProperty(OAuth2Constants.DeviceCode.USER_CODE);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/oauth2/
H A DOAuth2Constants.java764 public static class DeviceCode { class in class:OAuth2Constants

Completed in 30 milliseconds