Searched refs:ClientType (Results 1 - 8 of 8) sorted by relevance

/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DClientType.java24 public enum ClientType { enum
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DClientType.java24 public enum ClientType { enum
/forgerock/openam-v13/openam-oauth2-common/openid-connect-core/src/main/java/org/forgerock/openidconnect/
H A DClient.java49 public enum ClientType { enum in class:Client
58 * Constructs a new ClientType.
62 ClientType(String type) { method in class:Client.ClientType
81 public static ClientType fromString(String type) {
83 for (ClientType clientType : ClientType.values()) {
493 public ClientType getClientType() {
494 return ClientType.fromString(get(OAuth2Constants.ShortClientAttributeNames.CLIENT_TYPE.getType()).asString());
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/
H A DClient.java49 public enum ClientType { enum in class:Client
58 * Constructs a new ClientType.
62 ClientType(String type) { method in class:Client.ClientType
81 public static ClientType fromString(String type) {
83 for (ClientType clientType : ClientType.values()) {
493 public ClientType getClientType() {
494 return ClientType.fromString(get(OAuth2Constants.ShortClientAttributeNames.CLIENT_TYPE.getType()).asString());
H A DOpenIdConnectClientRegistrationService.java213 if (Client.ClientType.fromString(input.get(CLIENT_TYPE.getType()).asString()) != null) {
220 clientBuilder.setClientType(Client.ClientType.CONFIDENTIAL.getType());
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMClientRegistration.java57 import org.forgerock.oauth2.core.ClientType;
444 return ClientType.CONFIDENTIAL.equals(getClientType());
465 public ClientType getClientType() {
466 final ClientType clientType;
470 clientType = ClientType.CONFIDENTIAL;
472 clientType = ClientType.PUBLIC;
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMClientRegistration.java68 import org.forgerock.oauth2.core.ClientType;
414 return ClientType.CONFIDENTIAL.equals(getClientType());
435 public ClientType getClientType() {
436 final ClientType clientType;
440 clientType = ClientType.CONFIDENTIAL;
442 clientType = ClientType.PUBLIC;
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/openidconnect/
H A DOpenAMOpenIdConnectClientRegistrationService.java205 if (Client.ClientType.fromString(input.get(CLIENT_TYPE.getType()).asString()) != null) {
212 clientBuilder.setClientType(Client.ClientType.CONFIDENTIAL.getType());

Completed in 53 milliseconds