Class JpaStoreConfigurationParser
- java.lang.Object
-
- org.infinispan.persistence.jpa.configuration.JpaStoreConfigurationParser
-
- All Implemented Interfaces:
ConfigurationParser
@MetaInfServices public class JpaStoreConfigurationParser extends java.lang.Object implements ConfigurationParser
- Since:
- 9.0
- Author:
- Galder ZamarreƱo
-
-
Constructor Summary
Constructors Constructor Description JpaStoreConfigurationParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<? extends ConfigurationBuilderInfo>
getConfigurationBuilderInfo()
Namespace[]
getNamespaces()
void
readElement(XMLExtendedStreamReader reader, ConfigurationBuilderHolder holder)
The entry point of a configuration parser which gets passed aXMLExtendedStreamReader
positioned at a root element associated with the parser itself according to the registered mapping.
-
-
-
Method Detail
-
readElement
public void readElement(XMLExtendedStreamReader reader, ConfigurationBuilderHolder holder) throws javax.xml.stream.XMLStreamException
Description copied from interface:ConfigurationParser
The entry point of a configuration parser which gets passed aXMLExtendedStreamReader
positioned at a root element associated with the parser itself according to the registered mapping.- Specified by:
readElement
in 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:
getNamespaces
in interfaceConfigurationParser
-
getConfigurationBuilderInfo
public java.lang.Class<? extends ConfigurationBuilderInfo> getConfigurationBuilderInfo()
- Specified by:
getConfigurationBuilderInfo
in interfaceConfigurationParser
- Returns:
- The
ConfigurationBuilderInfo
used to build the root element of the parser.
-
-