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

/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DReconciliationContext.java50 private ReconStage stage = ReconStage.ACTIVE_INITIALIZED; field in class:ReconciliationContext
209 return stage.getState();
213 return stage;
358 * @param newStage Sets the current state and stage in the reconciliation process
361 // If the curent stage is one of COMPLETED, then simply return
362 if (this.stage.isComplete()) {
365 // If there is already a stage in progress, end it first
366 if (this.stage != ReconStage.ACTIVE_INITIALIZED) {
367 reconStat.endStage(this.stage);
371 this.stage
[all...]
H A DReconciliationStatistic.java91 public void startStage(ReconStage stage) { argument
94 stageStat.put(stage, stageEntry);
97 public void endStage(ReconStage stage) { argument
98 Map stageEntry = stageStat.get(stage);

Completed in 29 milliseconds