Package com.tangosol.config.xml
Interface AttributeProcessor<T>
- Type Parameters:
- T- the type of value that will be returned by the- AttributeProcessor
- 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 SummaryModifier and TypeMethodDescriptionprocess(ProcessingContext context, XmlAttribute attribute) Process anXmlAttributeand return a specific type of value.
- 
Method Details- 
processProcess anXmlAttributeand return a specific type of value.- Parameters:
- context- the- ProcessingContextin which the- XmlAttributeis being processed
- attribute- the- XmlAttributeto be processed
- Returns:
- a value of type T
- Throws:
- ConfigurationException- when a configuration problem was encountered
 
 
-