Class CustomizableBuilderProcessor<T>
java.lang.Object
com.tangosol.coherence.config.xml.processor.CustomizableBuilderProcessor<T>
- All Implemented Interfaces:
ElementProcessor<T>
- Direct Known Subclasses:
CompositeSchemeProcessor
,CustomizableBinaryStoreManagerBuilderProcessor
,InterceptorProcessor
A
CustomizableBuilderProcessor
is a multi-purpose ElementProcessor
responsible for processing xml elements that produce objects supporting BuilderCustomization
.- Since:
- Coherence 12.1.2
- Author:
- pfm 2011.11.30, bo 2012.02.09
-
Constructor Summary
ConstructorDescriptionCustomizableBuilderProcessor
(Class<T> clzToRealize) Constructs aCustomizableBuilderProcessor
for the specifiedClass
. -
Method Summary
Modifier and TypeMethodDescriptionprotected T
Instantiate the required class to inject and return.process
(ProcessingContext context, XmlElement element) Process anXmlElement
to return a specific type of value.
-
Constructor Details
-
CustomizableBuilderProcessor
Constructs aCustomizableBuilderProcessor
for the specifiedClass
.- Parameters:
clzToRealize
- the class that will be instantiated, injected and returned during processing
-
-
Method Details
-
process
Process anXmlElement
to return a specific type of value.- Specified by:
process
in interfaceElementProcessor<T>
- 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
-
instantiate
Instantiate the required class to inject and return.- Returns:
- object to be injected
-