Searched refs:readAuthorizationCode (Results 1 - 10 of 10) sorted by relevance

/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/test/java/org/forgerock/oauth2/core/
H A DAuthorizationCodeGrantTypeHandlerTest.java85 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
106 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
133 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
156 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
181 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
210 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
253 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
294 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
/forgerock/openam/openam-oauth2/src/test/java/org/forgerock/oauth2/core/
H A DAuthorizationCodeGrantTypeHandlerTest.java86 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
107 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
133 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
156 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
181 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
210 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
253 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
294 given(tokenStore.readAuthorizationCode(eq(request), anyString())).willReturn(authorizationCode);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMTokenStore.java165 public AuthorizationCode readAuthorizationCode(OAuth2Request request, String code) method in class:OpenAMTokenStore
168 return statelessTokenStore.readAuthorizationCode(request, code);
170 return statefulTokenStore.readAuthorizationCode(request, code);
H A DStatelessTokenStore.java467 public AuthorizationCode readAuthorizationCode(OAuth2Request request, String code) throws InvalidGrantException, method in class:StatelessTokenStore
469 return statefulTokenStore.readAuthorizationCode(request, code);
H A DStatefulTokenStore.java683 public AuthorizationCode readAuthorizationCode(OAuth2Request request, String code) method in class:StatefulTokenStore
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DTokenStore.java130 AuthorizationCode readAuthorizationCode(OAuth2Request request, String code) method in interface:TokenStore
H A DAuthorizationCodeGrantTypeHandler.java91 final AuthorizationCode authorizationCode = tokenStore.readAuthorizationCode(request, code);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DAuthorizationCodeGrantTypeHandler.java95 final AuthorizationCode authorizationCode = tokenStore.readAuthorizationCode(request, code);
H A DTokenStore.java216 AuthorizationCode readAuthorizationCode(OAuth2Request request, String code) method in interface:TokenStore
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMTokenStore.java596 public AuthorizationCode readAuthorizationCode(OAuth2Request request, String code) method in class:OpenAMTokenStore

Completed in 44 milliseconds