* @param value the attribute value
* @return true if the attribute was processed
*/
@Override
protected boolean setAttributeValue(XMLElement elementName, XMLElement attributeName, String value) {
RuntimeDescriptor descriptor = getDescriptor();
if (attributeName.getQName().equals(RuntimeTagNames.MAX_ENTRIES)) {
descriptor.setAttributeValue(Cache.MAX_ENTRIES, value);
return true;
} else
if (attributeName.getQName().equals(RuntimeTagNames.TIMEOUT_IN_SECONDS)) {
descriptor.setAttributeValue(Cache.TIMEOUT_IN_SECONDS, value);
return true;
} else
if (attributeName.getQName().equals(RuntimeTagNames.ENABLED)) {
descriptor.setAttributeValue(Cache.ENABLED, value);
return true;
} else
return false;
}