// next, notify all registered resources that recovery is done:
// any non-collected restxs should be aborted at this time
Enumeration reslist = Configuration.getResources ();
while ( reslist.hasMoreElements () ) {
RecoverableResource res = (RecoverableResource) reslist
.nextElement ();
try {
res.endRecovery ();
} catch ( Exception error ) {
Configuration.logWarning ( "ERROR IN RECOVERY", error );
// CONTINUE PROCESSING: JUST BECAUSE ONE RESOURCE
// DOES BAD THINGS DOESN'T MEAN EVERYONE MUST STAY
// IN DOUBT