/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/ |
H A D | GrantTypeHandler.java | 42 private final ClientAuthenticator clientAuthenticator; field in class:GrantTypeHandler 45 OAuth2UrisFactory urisFactory, ClientAuthenticator clientAuthenticator) { 48 this.clientAuthenticator = clientAuthenticator; 80 final ClientRegistration clientRegistration = clientAuthenticator.authenticate(request, 44 GrantTypeHandler(OAuth2ProviderSettingsFactory providerSettingsFactory, OAuth2UrisFactory urisFactory, ClientAuthenticator clientAuthenticator) argument
|
H A D | TokenIntrospectionServiceImpl.java | 39 private final ClientAuthenticator clientAuthenticator; field in class:TokenIntrospectionServiceImpl 44 public TokenIntrospectionServiceImpl(ClientAuthenticator clientAuthenticator, argument 46 this.clientAuthenticator = clientAuthenticator; 64 ClientRegistration clientRegistration = clientAuthenticator.authenticate(request,
|
H A D | AccessTokenServiceImpl.java | 56 private final ClientAuthenticator clientAuthenticator; field in class:AccessTokenServiceImpl 64 * @param clientAuthenticator An instance of the ClientAuthenticator. 71 final ClientAuthenticator clientAuthenticator, final TokenStore tokenStore, 74 this.clientAuthenticator = clientAuthenticator; 106 final ClientRegistration clientRegistration = clientAuthenticator.authenticate(request, 70 AccessTokenServiceImpl(Map<String, GrantTypeHandler> grantTypeHandlers, final ClientAuthenticator clientAuthenticator, final TokenStore tokenStore, final OAuth2ProviderSettingsFactory providerSettingsFactory, OAuth2UrisFactory urisFactory) argument
|
H A D | ClientCredentialsGrantTypeHandler.java | 47 * @param clientAuthenticator An instance of the ClientAuthenticator. 54 public ClientCredentialsGrantTypeHandler(ClientAuthenticator clientAuthenticator, argument 57 super(providerSettingsFactory, urisFactory, clientAuthenticator);
|
H A D | JwtBearerGrantTypeHandler.java | 48 public JwtBearerGrantTypeHandler(ClientAuthenticator clientAuthenticator, TokenStore tokenStore, argument 50 super(providerSettingsFactory, urisFactory, clientAuthenticator);
|
H A D | PasswordCredentialsGrantTypeHandler.java | 52 * @param clientAuthenticator An instance of the ClientAuthenticator. 59 public PasswordCredentialsGrantTypeHandler(ClientAuthenticator clientAuthenticator, argument 64 super(providerSettingsFactory, urisFactory, clientAuthenticator);
|
H A D | AuthorizationCodeGrantTypeHandler.java | 57 * @param clientAuthenticator An instance of the ClientAuthenticator. 66 ClientAuthenticator clientAuthenticator, TokenStore tokenStore, TokenInvalidator tokenInvalidator, 69 super(providerSettingsFactory, urisFactory, clientAuthenticator); 65 AuthorizationCodeGrantTypeHandler(List<AuthorizationCodeRequestValidator> requestValidators, ClientAuthenticator clientAuthenticator, TokenStore tokenStore, TokenInvalidator tokenInvalidator, OAuth2ProviderSettingsFactory providerSettingsFactory, OAuth2UrisFactory urisFactory, GrantTypeAccessTokenGenerator accessTokenGenerator) argument
|
H A D | DeviceCodeGrantTypeHandler.java | 58 ClientAuthenticator clientAuthenticator, TokenStore tokenStore, 61 super(providerSettingsFactory, urisFactory, clientAuthenticator); 57 DeviceCodeGrantTypeHandler(OAuth2ProviderSettingsFactory providerSettingsFactory, ClientAuthenticator clientAuthenticator, TokenStore tokenStore, ClientRegistrationStore clientRegistrationStore, ClientAuthenticationFailureFactory failureFactory, OAuth2UrisFactory urisFactory, GrantTypeAccessTokenGenerator accessTokenGenerator) argument
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/ |
H A D | GrantTypeHandler.java | 43 protected final ClientAuthenticator clientAuthenticator; field in class:GrantTypeHandler 46 OAuth2UrisFactory urisFactory, ClientAuthenticator clientAuthenticator) { 49 this.clientAuthenticator = clientAuthenticator; 81 final ClientRegistration clientRegistration = clientAuthenticator.authenticate(request, 45 GrantTypeHandler(OAuth2ProviderSettingsFactory providerSettingsFactory, OAuth2UrisFactory urisFactory, ClientAuthenticator clientAuthenticator) argument
|
H A D | TokenIntrospectionService.java | 39 private final ClientAuthenticator clientAuthenticator; field in class:TokenIntrospectionService 44 public TokenIntrospectionService(ClientAuthenticator clientAuthenticator, argument 46 this.clientAuthenticator = clientAuthenticator; 70 ClientRegistration clientRegistration = clientAuthenticator.authenticate(request,
|
H A D | AccessTokenService.java | 60 private final ClientAuthenticator clientAuthenticator; field in class:AccessTokenService 69 * @param clientAuthenticator An instance of the ClientAuthenticator. 76 final ClientAuthenticator clientAuthenticator, final TokenStore tokenStore, 80 this.clientAuthenticator = clientAuthenticator; 145 final ClientRegistration clientRegistration = clientAuthenticator.authenticate(request, 75 AccessTokenService(Map<String, GrantTypeHandler> grantTypeHandlers, final ClientAuthenticator clientAuthenticator, final TokenStore tokenStore, final OAuth2ProviderSettingsFactory providerSettingsFactory, OAuth2UrisFactory urisFactory, final ConfirmationKeyValidator confirmationKeyValidator) argument
|
H A D | ClientCredentialsGrantTypeHandler.java | 52 * @param clientAuthenticator An instance of the ClientAuthenticator. 59 public ClientCredentialsGrantTypeHandler(ClientAuthenticator clientAuthenticator, argument 62 super(providerSettingsFactory, urisFactory, clientAuthenticator);
|
H A D | JwtBearerGrantTypeHandler.java | 49 public JwtBearerGrantTypeHandler(ClientAuthenticator clientAuthenticator, TokenStore tokenStore, argument 51 super(providerSettingsFactory, urisFactory, clientAuthenticator);
|
H A D | PasswordCredentialsGrantTypeHandler.java | 56 * @param clientAuthenticator An instance of the ClientAuthenticator. 63 public PasswordCredentialsGrantTypeHandler(ClientAuthenticator clientAuthenticator, argument 68 super(providerSettingsFactory, urisFactory, clientAuthenticator);
|
H A D | AuthorizationCodeGrantTypeHandler.java | 61 * @param clientAuthenticator An instance of the ClientAuthenticator. 70 ClientAuthenticator clientAuthenticator, TokenStore tokenStore, TokenInvalidator tokenInvalidator, 73 super(providerSettingsFactory, urisFactory, clientAuthenticator); 69 AuthorizationCodeGrantTypeHandler(List<AuthorizationCodeRequestValidator> requestValidators, ClientAuthenticator clientAuthenticator, TokenStore tokenStore, TokenInvalidator tokenInvalidator, OAuth2ProviderSettingsFactory providerSettingsFactory, OAuth2UrisFactory urisFactory, GrantTypeAccessTokenGenerator accessTokenGenerator) argument
|
H A D | DeviceCodeGrantTypeHandler.java | 62 ClientAuthenticator clientAuthenticator, TokenStore tokenStore, 65 super(providerSettingsFactory, urisFactory, clientAuthenticator); 61 DeviceCodeGrantTypeHandler(OAuth2ProviderSettingsFactory providerSettingsFactory, ClientAuthenticator clientAuthenticator, TokenStore tokenStore, ClientRegistrationStore clientRegistrationStore, ClientAuthenticationFailureFactory failureFactory, OAuth2UrisFactory urisFactory, GrantTypeAccessTokenGenerator accessTokenGenerator) argument
|
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/test/java/org/forgerock/oauth2/core/ |
H A D | ClientCredentialsGrantTypeHandlerTest.java | 45 private ClientAuthenticator clientAuthenticator; field in class:ClientCredentialsGrantTypeHandlerTest 54 clientAuthenticator = mock(ClientAuthenticator.class); 63 grantTypeHandler = new ClientCredentialsGrantTypeHandler(clientAuthenticator, requestValidators, tokenStore, 83 given(clientAuthenticator.authenticate(request, "Endpoint")).willReturn(clientRegistration); 111 given(clientAuthenticator.authenticate(request, "Endpoint")).willReturn(clientRegistration);
|
H A D | AuthorizationCodeGrantTypeHandlerTest.java | 45 private ClientAuthenticator clientAuthenticator; field in class:AuthorizationCodeGrantTypeHandlerTest 57 clientAuthenticator = mock(ClientAuthenticator.class); 64 grantTypeHandler = new AuthorizationCodeGrantTypeHandler(requestValidators, clientAuthenticator, tokenStore, 84 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 105 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 131 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 154 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 179 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 208 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 251 given(clientAuthenticator [all...] |
H A D | PasswordCredentialsGrantTypeHandlerTest.java | 40 private ClientAuthenticator clientAuthenticator; field in class:PasswordCredentialsGrantTypeHandlerTest 50 clientAuthenticator = mock(ClientAuthenticator.class); 60 grantTypeHandler = new PasswordCredentialsGrantTypeHandler(clientAuthenticator, requestValidators, 81 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 112 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 134 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 170 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration);
|
H A D | AccessTokenServiceImplTest.java | 47 private ClientAuthenticator clientAuthenticator; field in class:AccessTokenServiceImplTest 58 clientAuthenticator = mock(ClientAuthenticator.class); 63 accessTokenService = new AccessTokenServiceImpl(grantTypeHandlers, clientAuthenticator, tokenStore, 141 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 161 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 183 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 208 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 240 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 277 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration);
|
H A D | DeviceCodeGrantTypeHandlerTest.java | 86 ClientAuthenticator clientAuthenticator = mock(ClientAuthenticator.class); 88 when(clientAuthenticator.authenticate(eq(request), anyString())).thenReturn(clientRegistration); 104 grantTypeHandler = new DeviceCodeGrantTypeHandler(providerSettingsFactory, clientAuthenticator, tokenStore,
|
/forgerock/openam/openam-oauth2/src/test/java/org/forgerock/oauth2/core/ |
H A D | AuthorizationCodeGrantTypeHandlerTest.java | 46 private ClientAuthenticator clientAuthenticator; field in class:AuthorizationCodeGrantTypeHandlerTest 58 clientAuthenticator = mock(ClientAuthenticator.class); 65 grantTypeHandler = new AuthorizationCodeGrantTypeHandler(requestValidators, clientAuthenticator, tokenStore, 85 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 106 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 131 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 154 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 179 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 208 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 251 given(clientAuthenticator [all...] |
H A D | AccessTokenServiceTest.java | 54 private ClientAuthenticator clientAuthenticator; field in class:AccessTokenServiceTest 65 clientAuthenticator = mock(ClientAuthenticator.class); 70 accessTokenService = new AccessTokenService(grantTypeHandlers, clientAuthenticator, tokenStore, 148 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 168 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 190 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 215 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 247 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration); 285 given(clientAuthenticator.authenticate(request, "Token Endpoint")).willReturn(clientRegistration);
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/ |
H A D | TokenRevocationResource.java | 77 private final ClientAuthenticator clientAuthenticator; field in class:TokenRevocationResource 86 * @param clientAuthenticator An instance of the ClientAuthenticator. 93 ClientAuthenticator clientAuthenticator, 95 this.clientAuthenticator = clientAuthenticator; 118 final ClientRegistration clientRegistration = clientAuthenticator.authenticate(request, null); 92 TokenRevocationResource(OAuth2RequestFactory requestFactory, ClientAuthenticator clientAuthenticator, TokenStore tokenStore, ExceptionHandler exceptionHandler, OAuth2RealmResolver realmResolver) argument
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/restlet/ |
H A D | IdTokenInfo.java | 79 private final ClientAuthenticator clientAuthenticator; field in class:IdTokenInfo 93 final ExceptionHandler exceptionHandler, final ClientAuthenticator clientAuthenticator, 98 this.clientAuthenticator = clientAuthenticator; 166 clientAuthenticator.authenticate(request, urisFactory.get(request).getTokenEndpoint()); 91 IdTokenInfo(final OpenIdConnectClientRegistrationStore clientRegistrationStore, final OAuth2RequestFactory requestFactory, final ExceptionHandler exceptionHandler, final ClientAuthenticator clientAuthenticator, final OAuth2UrisFactory urisFactory, OAuth2ProviderSettingsFactory providerSettingsFactory) argument
|