Package com.tangosol.config.xml
Interface AttributeProcessor<T>
-
- Type Parameters:
T
- the type of value that will be returned by theAttributeProcessor
- All Known Implementing Classes:
SimpleAttributeProcessor
public interface AttributeProcessor<T>
AnAttributeProcessor
is responsible for processingXmlAttribute
content to return a strongly-typed value.- Since:
- Coherence 12.1.2
- Author:
- bo 2011.06.14
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
process(ProcessingContext context, XmlAttribute attribute)
Process anXmlAttribute
and return a specific type of value.
-
-
-
Method Detail
-
process
T process(ProcessingContext context, XmlAttribute attribute) throws ConfigurationException
Process anXmlAttribute
and return a specific type of value.- Parameters:
context
- theProcessingContext
in which theXmlAttribute
is being processedattribute
- theXmlAttribute
to be processed- Returns:
- a value of type T
- Throws:
ConfigurationException
- when a configuration problem was encountered
-
-