Searched defs:failureCause (Results 1 - 7 of 7) sorted by relevance

/forgerock/openidm-v4/openidm-provisioner-openicf/src/main/java/org/forgerock/openidm/provisioner/openicf/syncfailure/
H A DDeadLetterQueueHandler.java58 * @param failureCause the cause of the sync failure
61 public void invoke(Context context, Map<String, Object> syncFailure, Exception failureCause) argument
71 syncDetail.put("failureCause", failureCause.toString());
H A DInfiniteRetrySyncFailureHandler.java40 * @param failureCause the cause of the sync failure
43 public void invoke(Context context, Map<String, Object> syncFailure, Exception failureCause) argument
47 + syncFailure.get("systemIdentifier") + ": " + failureCause.getMessage(), failureCause);
H A DLoggedIgnoreHandler.java37 * @param failureCause the cause of the sync failure
40 public void invoke(Context context, Map<String, Object> syncFailure, Exception failureCause) argument
47 failureCause.toString());
H A DNullSyncFailureHandler.java41 * @param failureCause the cause of the sync failure
44 public void invoke(Context context, Map<String, Object> syncFailure, Exception failureCause) argument
H A DScriptedSyncFailureHandler.java72 * @param failureCause the cause of the sync failure
74 public void invoke(Context context, Map<String, Object> syncFailure, Exception failureCause) argument
84 script.put("failureCause", failureCause);
91 + syncFailure.get("uid") + " object: " + failureCause.getMessage()
H A DSimpleRetrySyncFailureHandler.java62 * @param failureCause the cause of the sync failure
65 public void invoke(Context context, Map<String, Object> syncFailure, Exception failureCause) argument
82 postRetryHandler.invoke(context, syncFailure, failureCause);
90 failureCause);
H A DSyncFailureHandler.java33 * @param failureCause the cause of the exception
36 void invoke(Context context, Map<String, Object> syncFailure, Exception failureCause) argument

Completed in 38 milliseconds