Class SoftIndexFileStoreConfigurationParser
- java.lang.Object
-
- org.infinispan.persistence.sifs.configuration.SoftIndexFileStoreConfigurationParser
-
- All Implemented Interfaces:
ConfigurationParser
@MetaInfServices public class SoftIndexFileStoreConfigurationParser extends java.lang.Object implements ConfigurationParser
- Author:
- Radim Vansa
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringROOT_ELEMENT
-
Constructor Summary
Constructors Constructor Description SoftIndexFileStoreConfigurationParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<? extends ConfigurationBuilderInfo>getConfigurationBuilderInfo()Namespace[]getNamespaces()voidreadElement(XMLExtendedStreamReader reader, ConfigurationBuilderHolder holder)The entry point of a configuration parser which gets passed aXMLExtendedStreamReaderpositioned at a root element associated with the parser itself according to the registered mapping.
-
-
-
Field Detail
-
ROOT_ELEMENT
public static final java.lang.String ROOT_ELEMENT
- See Also:
- Constant Field Values
-
-
Method Detail
-
readElement
public void readElement(XMLExtendedStreamReader reader, ConfigurationBuilderHolder holder) throws javax.xml.stream.XMLStreamException
Description copied from interface:ConfigurationParserThe entry point of a configuration parser which gets passed aXMLExtendedStreamReaderpositioned at a root element associated with the parser itself according to the registered mapping.- Specified by:
readElementin interfaceConfigurationParser- Parameters:
reader- the XML stream readerholder- a holder object used by the parser to maintain state- Throws:
javax.xml.stream.XMLStreamException
-
getNamespaces
public Namespace[] getNamespaces()
- Specified by:
getNamespacesin interfaceConfigurationParser
-
getConfigurationBuilderInfo
public java.lang.Class<? extends ConfigurationBuilderInfo> getConfigurationBuilderInfo()
- Specified by:
getConfigurationBuilderInfoin interfaceConfigurationParser- Returns:
- The
ConfigurationBuilderInfoused to build the root element of the parser.
-
-