logger.info(methodName, null, messages.fetchLabel("restoring from")+fileName);
FileInputStream fis = null;
ObjectInputStream in = null;
fis = new FileInputStream(fileName);
in = new ObjectInputStream(fis);
Checkpointable checkpointable = (Checkpointable)in.readObject();
orchestratorCommonArea.setCheckpointable(checkpointable);
in.close();
retVal = true;
logger.info(methodName, null, messages.fetch("restored"));
}