// if we already have a coordinator from a previous recovery scan then reuse it
// with luck it will have been committed between the last scan and this one
coordinator = (CoordinatorEngine)CoordinatorProcessorImpl.getProcessor().getCoordinator(id);
if (coordinator == null) {
// no entry found so recreate one which is at the prepared stage
coordinator = new CoordinatorEngine(id, durable, endpointReferenceType, true, State.STATE_PREPARED_SUCCESS) ;
}
return true ;
}
catch (final Throwable th)
{