Searched refs:convertFromJson (Results 1 - 25 of 55) sorted by relevance

123

/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/callbackhandlers/
H A DJsonCallbackParser.java86 T convertFromJson(T callback, JsonValue jsonObject) throws RestAuthException; method in interface:JsonCallbackParser
H A DRestAuthRedirectCallbackHandler.java90 public RedirectCallback convertFromJson(RedirectCallback callback, JsonValue jsonCallback) throws RestAuthException { method in class:RestAuthRedirectCallbackHandler
H A DRestAuthTextOutputCallbackHandler.java82 public TextOutputCallback convertFromJson(TextOutputCallback callback, JsonValue jsonCallback) throws RestAuthException { method in class:RestAuthTextOutputCallbackHandler
H A DRestAuthX509CallbackHandler.java101 public X509CertificateCallback convertFromJson(X509CertificateCallback callback, JsonValue jsonCallback) throws RestAuthException { method in class:RestAuthX509CallbackHandler
H A DRestAuthHiddenValueCallbackHandler.java86 public HiddenValueCallback convertFromJson(HiddenValueCallback callback, JsonValue jsonCallback) throws method in class:RestAuthHiddenValueCallbackHandler
H A DRestAuthNameCallbackHandler.java99 public NameCallback convertFromJson(NameCallback callback, JsonValue jsonCallback) throws RestAuthException { method in class:RestAuthNameCallbackHandler
H A DRestAuthPasswordCallbackHandler.java98 public PasswordCallback convertFromJson(PasswordCallback callback, JsonValue jsonCallback) throws RestAuthException { method in class:RestAuthPasswordCallbackHandler
H A DRestAuthTextInputCallbackHandler.java89 public TextInputCallback convertFromJson(TextInputCallback callback, JsonValue jsonCallback) throws RestAuthException { method in class:RestAuthTextInputCallbackHandler
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/callbackhandlers/
H A DJsonCallbackParser.java86 T convertFromJson(T callback, JsonValue jsonObject) throws RestAuthException; method in interface:JsonCallbackParser
H A DRestAuthPollingWaitCallbackHandler.java72 public PollingWaitCallback convertFromJson(PollingWaitCallback callback, JsonValue jsonCallback) throws RestAuthException { method in class:RestAuthPollingWaitCallbackHandler
H A DRestAuthRedirectCallbackHandler.java90 public RedirectCallback convertFromJson(RedirectCallback callback, JsonValue jsonCallback) throws RestAuthException { method in class:RestAuthRedirectCallbackHandler
H A DRestAuthTextOutputCallbackHandler.java82 public TextOutputCallback convertFromJson(TextOutputCallback callback, JsonValue jsonCallback) throws RestAuthException { method in class:RestAuthTextOutputCallbackHandler
H A DRestAuthX509CallbackHandler.java101 public X509CertificateCallback convertFromJson(X509CertificateCallback callback, JsonValue jsonCallback) throws RestAuthException { method in class:RestAuthX509CallbackHandler
H A DRestAuthHiddenValueCallbackHandler.java86 public HiddenValueCallback convertFromJson(HiddenValueCallback callback, JsonValue jsonCallback) throws method in class:RestAuthHiddenValueCallbackHandler
H A DRestAuthTextInputCallbackHandler.java89 public TextInputCallback convertFromJson(TextInputCallback callback, JsonValue jsonCallback) throws RestAuthException { method in class:RestAuthTextInputCallbackHandler
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/
H A DRestAuthCallbackHandlerManagerTest.java197 given(restAuthCallbackHandler1.convertFromJson(callback1, jsonCallback1)).willReturn(callback1);
198 given(restAuthCallbackHandler2.convertFromJson(callback2, jsonCallback2)).willReturn(callback2);
204 verify(restAuthCallbackHandler1).convertFromJson(callback1, jsonCallback1);
205 verify(restAuthCallbackHandler2).convertFromJson(callback2, jsonCallback2);
237 given(restAuthCallbackHandler1.convertFromJson(callback1, jsonCallback1)).willReturn(callback1);
238 given(restAuthCallbackHandler2.convertFromJson(callback2, jsonCallback2)).willReturn(callback2);
247 verify(restAuthCallbackHandler1).convertFromJson(callback1, jsonCallback1);
248 verify(restAuthCallbackHandler2).convertFromJson(callback2, jsonCallback2);
284 given(restAuthCallbackHandler1.convertFromJson(callback1, jsonCallback1)).willReturn(callback1);
285 given(restAuthCallbackHandler2.convertFromJson(callback
[all...]
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/
H A DRestAuthCallbackHandlerManagerTest.java197 given(restAuthCallbackHandler1.convertFromJson(callback1, jsonCallback1)).willReturn(callback1);
198 given(restAuthCallbackHandler2.convertFromJson(callback2, jsonCallback2)).willReturn(callback2);
204 verify(restAuthCallbackHandler1).convertFromJson(callback1, jsonCallback1);
205 verify(restAuthCallbackHandler2).convertFromJson(callback2, jsonCallback2);
237 given(restAuthCallbackHandler1.convertFromJson(callback1, jsonCallback1)).willReturn(callback1);
238 given(restAuthCallbackHandler2.convertFromJson(callback2, jsonCallback2)).willReturn(callback2);
247 verify(restAuthCallbackHandler1).convertFromJson(callback1, jsonCallback1);
248 verify(restAuthCallbackHandler2).convertFromJson(callback2, jsonCallback2);
284 given(restAuthCallbackHandler1.convertFromJson(callback1, jsonCallback1)).willReturn(callback1);
285 given(restAuthCallbackHandler2.convertFromJson(callback
[all...]
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/callbackhandlers/
H A DRestAuthLanguageCallbackHandlerTest.java139 LanguageCallback convertedLanguageCallback = restAuthLanguageCallbackHandler.convertFromJson(
162 restAuthLanguageCallbackHandler.convertFromJson(languageCallback, jsonLanguageCallback);
181 LanguageCallback convertedLanguageCallback = restAuthLanguageCallbackHandler.convertFromJson(
H A DRestAuthTextInputCallbackHandlerTest.java126 TextInputCallback convertedTextInputCallback = restAuthTextInputCallbackHandler.convertFromJson(
151 restAuthTextInputCallbackHandler.convertFromJson(textInputCallback, jsonTextInputCallback);
172 TextInputCallback convertedTextInputCallback = restAuthTextInputCallbackHandler.convertFromJson(
H A DRestAuthChoiceCallbackHandlerTest.java172 ChoiceCallback convertedChoiceCallback = restAuthChoiceCallbackHandler.convertFromJson(choiceCallback,
209 restAuthChoiceCallbackHandler.convertFromJson(choiceCallback, jsonNameCallback);
241 ChoiceCallback convertedChoiceCallback = restAuthChoiceCallbackHandler.convertFromJson(choiceCallback,
278 restAuthChoiceCallbackHandler.convertFromJson(choiceCallback, jsonNameCallback);
307 ChoiceCallback convertedChoiceCallback = restAuthChoiceCallbackHandler.convertFromJson(choiceCallback,
H A DRestAuthConfirmationCallbackHandlerTest.java136 ConfirmationCallback convertedConfirmationCallback = restAuthConfirmationCallbackHandler.convertFromJson(
170 ConfirmationCallback convertedConfirmationCallback = restAuthConfirmationCallbackHandler.convertFromJson(
204 restAuthConfirmationCallbackHandler.convertFromJson(confirmationCallback, jsonConfirmationCallback);
229 ConfirmationCallback convertedConfirmationCallback = restAuthConfirmationCallbackHandler.convertFromJson(
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/callbackhandlers/
H A DRestAuthLanguageCallbackHandlerTest.java138 LanguageCallback convertedLanguageCallback = restAuthLanguageCallbackHandler.convertFromJson(
161 restAuthLanguageCallbackHandler.convertFromJson(languageCallback, jsonLanguageCallback);
177 LanguageCallback convertedLanguageCallback = restAuthLanguageCallbackHandler.convertFromJson(
H A DRestAuthTextInputCallbackHandlerTest.java123 TextInputCallback convertedTextInputCallback = restAuthTextInputCallbackHandler.convertFromJson(
148 restAuthTextInputCallbackHandler.convertFromJson(textInputCallback, jsonTextInputCallback);
166 TextInputCallback convertedTextInputCallback = restAuthTextInputCallbackHandler.convertFromJson(
H A DRestAuthChoiceCallbackHandlerTest.java166 ChoiceCallback convertedChoiceCallback = restAuthChoiceCallbackHandler.convertFromJson(choiceCallback,
203 restAuthChoiceCallbackHandler.convertFromJson(choiceCallback, jsonNameCallback);
232 ChoiceCallback convertedChoiceCallback = restAuthChoiceCallbackHandler.convertFromJson(choiceCallback,
269 restAuthChoiceCallbackHandler.convertFromJson(choiceCallback, jsonNameCallback);
295 ChoiceCallback convertedChoiceCallback = restAuthChoiceCallbackHandler.convertFromJson(choiceCallback,
H A DRestAuthConfirmationCallbackHandlerTest.java133 ConfirmationCallback convertedConfirmationCallback = restAuthConfirmationCallbackHandler.convertFromJson(
167 ConfirmationCallback convertedConfirmationCallback = restAuthConfirmationCallbackHandler.convertFromJson(
201 restAuthConfirmationCallbackHandler.convertFromJson(confirmationCallback, jsonConfirmationCallback);
223 ConfirmationCallback convertedConfirmationCallback = restAuthConfirmationCallbackHandler.convertFromJson(

Completed in 71 milliseconds

123