Class BackingMapSchemeProcessor
- java.lang.Object
-
- com.tangosol.coherence.config.xml.processor.BackingMapSchemeProcessor
-
- All Implemented Interfaces:
ElementProcessor<BackingMapScheme>
@XmlSimpleName("backing-map-scheme") public class BackingMapSchemeProcessor extends Object implements ElementProcessor<BackingMapScheme>
A BackingMapSchemeProcessor is responsible for processing a backing-map-schemeXmlElement
to produce aBackingMapScheme
.- Since:
- Coherence 12.1.2
- Author:
- pfm 2011.12.02
-
-
Field Summary
Fields Modifier and Type Field Description static String
ELEMENT_NAME
The name of the backing-map-schemeXmlElement
.protected String
m_sElementName
The name of theXmlElement
to process.
-
Constructor Summary
Constructors Constructor Description BackingMapSchemeProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BackingMapScheme
process(ProcessingContext context, XmlElement element)
Process anXmlElement
to return a specific type of value.
-
-
-
Field Detail
-
m_sElementName
protected String m_sElementName
The name of theXmlElement
to process.- Since:
- 12.2.1.4
-
ELEMENT_NAME
public static final String ELEMENT_NAME
The name of the backing-map-schemeXmlElement
.- Since:
- 12.2.1.4
- See Also:
- Constant Field Values
-
-
Method Detail
-
process
public BackingMapScheme process(ProcessingContext context, XmlElement element) throws ConfigurationException
Process anXmlElement
to return a specific type of value.- Specified by:
process
in interfaceElementProcessor<BackingMapScheme>
- Parameters:
context
- theProcessingContext
in which theXmlElement
is being processedelement
- theXmlElement
to process- Returns:
- a value of type T
- Throws:
ConfigurationException
- when a configuration problem was encountered
-
-