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>
An
AttributeProcessor
is responsible for processing XmlAttribute
content
to return a strongly-typed value.- Since:
- Coherence 12.1.2
- Author:
- bo 2011.06.14
-
Method Summary
Modifier and TypeMethodDescriptionprocess
(ProcessingContext context, XmlAttribute attribute) Process anXmlAttribute
and return a specific type of value.
-
Method Details
-
process
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
-