Searched refs:getClientId (Results 1 - 25 of 111) sorted by relevance

12345

/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DIntrospectableToken.java34 String getClientId(); method in interface:IntrospectableToken
H A DClientRegistration.java59 String getClientId(); method in interface:ClientRegistration
H A DAccessTokenServiceImpl.java117 if (!refreshToken.getClientId().equalsIgnoreCase(clientRegistration.getClientId())) {
118 logger.error("Refresh Token was issued to a different client id: " + clientRegistration.getClientId());
146 newRefreshToken = tokenStore.createRefreshToken(grantType, clientRegistration.getClientId(),
154 refreshToken.getResourceOwnerId(), clientRegistration.getClientId(), refreshToken.getRedirectUri(),
H A DAuthorizationCodeGrantTypeHandler.java123 if (!authorizationCode.getClientId().equalsIgnoreCase(clientRegistration.getClientId())) {
125 + authorizationCode.getClientId() + ", actual, " + clientRegistration.getClientId());
145 clientRegistration.getClientId(), resourceOwnerId, redirectUri, authorizationScope, validatedClaims,
H A DClientCredentialsGrantTypeHandler.java81 clientRegistration.getClientId(), clientRegistration.getClientId(), null, validatedScope,
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DIntrospectableToken.java54 String getClientId(); method in interface:IntrospectableToken
H A DClientRegistration.java60 String getClientId(); method in interface:ClientRegistration
H A DAuthorizationCodeGrantTypeHandler.java115 String clientId = authorizationCode.getClientId();
129 if (!authorizationCode.getClientId().equalsIgnoreCase(clientRegistration.getClientId())) {
131 + authorizationCode.getClientId() + ", actual, " + clientRegistration.getClientId());
150 clientRegistration.getClientId(), resourceOwnerId, redirectUri, authorizationScope, validatedClaims,
H A DClientAuthenticator.java101 Reject.ifTrue(isEmpty(clientCredentials.getClientId()), "Missing parameter, 'client_id'");
107 final ClientRegistration clientRegistration = clientRegistrationStore.get(clientCredentials.getClientId(),
115 !authenticate(request, clientCredentials.getClientId(), clientCredentials.getClientSecret(), realm)) {
116 logger.error("ClientVerifierImpl::Unable to verify password for: " + clientCredentials.getClientId());
129 String[] obs = {clientCredentials.getClientId()};
132 String[] obs = {clientCredentials.getClientId()};
H A DAccessTokenService.java158 if (!refreshToken.getClientId().equalsIgnoreCase(clientRegistration.getClientId())) {
159 logger.error("Refresh Token was issued to a different client id: " + clientRegistration.getClientId());
186 newRefreshToken = tokenStore.createRefreshToken(grantType, clientRegistration.getClientId(),
194 refreshToken.getResourceOwnerId(), clientRegistration.getClientId(), refreshToken.getRedirectUri(),
H A DClientCredentialsGrantTypeHandler.java87 clientRegistration.getClientId(), clientRegistration.getClientId(), null, validatedScope,
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DClientAuthenticatorImpl.java89 Reject.ifTrue(isEmpty(clientCredentials.getClientId()), "Missing parameter, 'client_id'");
95 final ClientRegistration clientRegistration = clientRegistrationStore.get(clientCredentials.getClientId(),
103 !authenticate(request, clientCredentials.getClientId(), clientCredentials.getClientSecret(), realm)) {
104 logger.error("ClientVerifierImpl::Unable to verify password for: " + clientCredentials.getClientId());
114 String[] obs = {clientCredentials.getClientId()};
117 String[] obs = {clientCredentials.getClientId()};
H A DClientCredentials.java73 public String getClientId() { method in class:ClientCredentials
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DClientCredentials.java73 public String getClientId() { method in class:ClientCredentials
H A DStatelessTokenMetadata.java74 public String getClientId() { method in class:StatelessTokenMetadata
93 map.put(CLIENT_ID, getClientId());
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/
H A DOpenIDTokenIssuer.java86 accessToken.getClientId(),
87 accessToken.getClientId(),
/forgerock/openam/openam-oauth2/src/test/java/org/forgerock/oauth2/core/
H A DStatefulAccessTokenTest.java55 String clientId = openAMAccessToken.getClientId();
67 String clientId = openAMAccessToken.getClientId();
H A DAccessTokenServiceTest.java170 given(refreshToken.getClientId()).willReturn("CLIENT_ID");
171 given(clientRegistration.getClientId()).willReturn("OTHER_CLIENT_ID");
192 given(refreshToken.getClientId()).willReturn("CLIENT_ID");
193 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
217 given(refreshToken.getClientId()).willReturn("CLIENT_ID");
218 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
249 given(refreshToken.getClientId()).willReturn("CLIENT_ID");
250 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
287 given(refreshToken.getClientId()).willReturn("CLIENT_ID");
288 given(clientRegistration.getClientId())
[all...]
H A DAuthorizationCodeGrantTypeHandlerTest.java159 given(authorizationCode.getClientId()).willReturn("CLIENT_ID");
160 given(clientRegistration.getClientId()).willReturn("OTHER_CLIENT_ID");
184 given(authorizationCode.getClientId()).willReturn("CLIENT_ID");
185 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
213 given(authorizationCode.getClientId()).willReturn("CLIENT_ID");
214 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
256 given(authorizationCode.getClientId()).willReturn("CLIENT_ID");
257 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
297 given(authorizationCode.getClientId()).willReturn("CLIENT_ID");
298 given(clientRegistration.getClientId())
[all...]
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/test/java/org/forgerock/oauth2/core/
H A DAccessTokenServiceImplTest.java163 given(refreshToken.getClientId()).willReturn("CLIENT_ID");
164 given(clientRegistration.getClientId()).willReturn("OTHER_CLIENT_ID");
185 given(refreshToken.getClientId()).willReturn("CLIENT_ID");
186 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
210 given(refreshToken.getClientId()).willReturn("CLIENT_ID");
211 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
242 given(refreshToken.getClientId()).willReturn("CLIENT_ID");
243 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
279 given(refreshToken.getClientId()).willReturn("CLIENT_ID");
280 given(clientRegistration.getClientId())
[all...]
H A DAuthorizationCodeGrantTypeHandlerTest.java159 given(authorizationCode.getClientId()).willReturn("CLIENT_ID");
160 given(clientRegistration.getClientId()).willReturn("OTHER_CLIENT_ID");
184 given(authorizationCode.getClientId()).willReturn("CLIENT_ID");
185 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
213 given(authorizationCode.getClientId()).willReturn("CLIENT_ID");
214 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
256 given(authorizationCode.getClientId()).willReturn("CLIENT_ID");
257 given(clientRegistration.getClientId()).willReturn("CLIENT_ID");
297 given(authorizationCode.getClientId()).willReturn("CLIENT_ID");
298 given(clientRegistration.getClientId())
[all...]
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/resources/
H A DResourceSetLabelRegistration.java116 String labelId = getLabelId(resourceSet.getClientId(), label);
130 getLabelId(resourceSet.getClientId(), label));
142 getLabelId(resourceSet.getClientId(), label), resourceSet.getId(), e);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/resources/
H A DResourceSetLabelRegistration.java116 String labelId = getLabelId(resourceSet.getClientId(), label);
130 getLabelId(resourceSet.getClientId(), label));
142 getLabelId(resourceSet.getClientId(), label), resourceSet.getId(), e);
/forgerock/openam-v13/openam-oauth2-common/openid-connect-core/src/main/java/org/forgerock/openidconnect/
H A DOpenIDTokenIssuer.java87 accessToken.getClientId(),
88 accessToken.getClientId(),
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/rest/
H A DUmaResourceSetRegistrationHook.java116 resourceSet.getClientId().toLowerCase());
121 + resourceSet.getClientId(), e);
139 resourceSet.getClientId().toLowerCase());
144 + resourceSet.getClientId(), e);

Completed in 79 milliseconds

12345