Searched refs:createRefreshToken (Results 1 - 18 of 18) sorted by relevance

/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMTokenStore.java109 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:OpenAMTokenStore
113 return statelessTokenStore.createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope,
116 return statefulTokenStore.createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope,
122 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:OpenAMTokenStore
125 return createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope,
130 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:OpenAMTokenStore
134 return statelessTokenStore.createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope,
137 return statefulTokenStore.createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope,
143 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:OpenAMTokenStore
146 return createRefreshToken(grantTyp
151 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:OpenAMTokenStore
[all...]
H A DStatelessTokenStore.java351 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:StatelessTokenStore
353 return createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope, request, "");
357 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:StatelessTokenStore
360 return createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope, request,
365 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:StatelessTokenStore
375 return createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope, request,
380 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:StatelessTokenStore
383 return createRefreshToken(grantType, clientId, resourceOwnerId,
389 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:StatelessTokenStore
H A DStatefulTokenStore.java570 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:StatefulTokenStore
573 return createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope, request, null);
577 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:StatefulTokenStore
580 return createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope, request,
585 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:StatefulTokenStore
595 return createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope, request,
600 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:StatefulTokenStore
603 return createRefreshToken(grantType, clientId, resourceOwnerId,
609 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:StatefulTokenStore
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DTokenStore.java124 RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in interface:TokenStore
142 RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in interface:TokenStore
161 RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in interface:TokenStore
180 RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in interface:TokenStore
200 RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in interface:TokenStore
H A DGrantTypeAccessTokenGenerator.java69 refreshToken = tokenStore.createRefreshToken(grantType, clientId,
H A DPasswordCredentialsGrantTypeHandler.java103 refreshToken = tokenStore.createRefreshToken(grantType, clientRegistration.getClientId(),
H A DAccessTokenService.java186 newRefreshToken = tokenStore.createRefreshToken(grantType, clientRegistration.getClientId(),
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DGrantTypeAccessTokenGenerator.java43 refreshToken = tokenStore.createRefreshToken(grantType, clientId,
H A DTokenStore.java97 RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in interface:TokenStore
115 RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in interface:TokenStore
H A DPasswordCredentialsGrantTypeHandler.java99 refreshToken = tokenStore.createRefreshToken(grantType, clientRegistration.getClientId(),
H A DAccessTokenServiceImpl.java146 newRefreshToken = tokenStore.createRefreshToken(grantType, clientRegistration.getClientId(),
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/test/java/org/forgerock/oauth2/core/
H A DDeviceCodeGrantTypeHandlerTest.java94 when(tokenStore.createRefreshToken(anyString(), anyString(), anyString(), anyString(), anySetOf(String.class),
140 verify(tokenStore).createRefreshToken(DEVICE_CODE, "CLIENT_ID", "RESOURCE_OWNER_ID", null, scope, request,
H A DPasswordCredentialsGrantTypeHandlerTest.java141 given(tokenStore.createRefreshToken(anyString(), anyString(), anyString(), anyString(), anySetOf(String.class),
H A DAccessTokenServiceImplTest.java286 given(tokenStore.createRefreshToken(anyString(), anyString(), anyString(), anyString(), anySetOf(String.class),
H A DAuthorizationCodeGrantTypeHandlerTest.java217 given(tokenStore.createRefreshToken(anyString(), anyString(), anyString(), anyString(), anySetOf(String.class),
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMTokenStore.java521 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:OpenAMTokenStore
524 return createRefreshToken(grantType, clientId, resourceOwnerId, redirectUri, scope, request, null);
528 public RefreshToken createRefreshToken(String grantType, String clientId, String resourceOwnerId, method in class:OpenAMTokenStore
/forgerock/openam/openam-oauth2/src/test/java/org/forgerock/oauth2/core/
H A DAccessTokenServiceTest.java294 given(tokenStore.createRefreshToken(anyString(), anyString(), anyString(), anyString(), anySetOf(String.class),
H A DAuthorizationCodeGrantTypeHandlerTest.java217 given(tokenStore.createRefreshToken(anyString(), anyString(), anyString(), anyString(), anySetOf(String.class),

Completed in 69 milliseconds