/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/ |
H A D | OpenAMTokenStore.java | 109 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 D | StatelessTokenStore.java | 351 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 D | StatefulTokenStore.java | 570 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 D | TokenStore.java | 124 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 D | GrantTypeAccessTokenGenerator.java | 69 refreshToken = tokenStore.createRefreshToken(grantType, clientId,
|
H A D | PasswordCredentialsGrantTypeHandler.java | 103 refreshToken = tokenStore.createRefreshToken(grantType, clientRegistration.getClientId(),
|
H A D | AccessTokenService.java | 186 newRefreshToken = tokenStore.createRefreshToken(grantType, clientRegistration.getClientId(),
|
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/ |
H A D | GrantTypeAccessTokenGenerator.java | 43 refreshToken = tokenStore.createRefreshToken(grantType, clientId,
|
H A D | TokenStore.java | 97 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 D | PasswordCredentialsGrantTypeHandler.java | 99 refreshToken = tokenStore.createRefreshToken(grantType, clientRegistration.getClientId(),
|
H A D | AccessTokenServiceImpl.java | 146 newRefreshToken = tokenStore.createRefreshToken(grantType, clientRegistration.getClientId(),
|
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/test/java/org/forgerock/oauth2/core/ |
H A D | DeviceCodeGrantTypeHandlerTest.java | 94 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 D | PasswordCredentialsGrantTypeHandlerTest.java | 141 given(tokenStore.createRefreshToken(anyString(), anyString(), anyString(), anyString(), anySetOf(String.class),
|
H A D | AccessTokenServiceImplTest.java | 286 given(tokenStore.createRefreshToken(anyString(), anyString(), anyString(), anyString(), anySetOf(String.class),
|
H A D | AuthorizationCodeGrantTypeHandlerTest.java | 217 given(tokenStore.createRefreshToken(anyString(), anyString(), anyString(), anyString(), anySetOf(String.class),
|
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/ |
H A D | OpenAMTokenStore.java | 521 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 D | AccessTokenServiceTest.java | 294 given(tokenStore.createRefreshToken(anyString(), anyString(), anyString(), anyString(), anySetOf(String.class),
|
H A D | AuthorizationCodeGrantTypeHandlerTest.java | 217 given(tokenStore.createRefreshToken(anyString(), anyString(), anyString(), anyString(), anySetOf(String.class),
|