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

/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DReconciliationService.java148 Map<String, ReconciliationContext> reconRuns = field in class:ReconciliationService
166 for (ReconciliationContext entry : reconRuns.values()) {
175 if (reconRuns.containsKey(localId)) {
176 return newResourceResponse(localId, null, new JsonValue(reconRuns.get(localId).getSummary())).asPromise();
284 result.put("state", reconRuns.get(reconId).getState());
295 ReconciliationContext foundRun = reconRuns.get(id);
424 synchronized(reconRuns) {
425 if (reconRuns.size() > maxCompletedRuns) {
428 ListIterator<String> iter = new ArrayList<String>(reconRuns.keySet())
429 .listIterator(reconRuns
[all...]

Completed in 29 milliseconds