*/
public static void parseCommonStoreAttributes(XMLExtendedStreamReader reader, int i,
AbstractStoreConfigurationBuilder<?, ?> builder) throws XMLStreamException {
ParseUtils.requireNoNamespaceAttribute(reader, i);
String value = replaceProperties(reader.getAttributeValue(i));
Attribute attribute = Attribute.forName(reader.getAttributeLocalName(i));
switch (attribute) {
case FETCH_PERSISTENT_STATE:
builder.fetchPersistentState(Boolean.parseBoolean(value));
break;
case IGNORE_MODIFICATIONS: