String value = replaceProperties(reader.getAttributeValue(i));
Attribute attribute = Attribute.forName(reader.getAttributeLocalName(i));
switch (attribute) {
case ENABLED:
if (Boolean.parseBoolean(value))
recovery.enable();
else
recovery.disable();
break;
case RECOVERY_INFO_CACHE_NAME:
recovery.recoveryInfoCacheName(value);