Class UnsupportedFeatureProcessor
java.lang.Object
com.tangosol.coherence.config.xml.processor.UnsupportedFeatureProcessor
- All Implemented Interfaces:
ElementProcessor<Object>
UnsupportedFeatureProcessor is an ElementProcessor that fails fast highlighting
which feature is not supported in this edition of the product.
- Author:
- hr 2020.01.23
-
Field Summary
-
Constructor Summary
ConstructorDescriptionUnsupportedFeatureProcessor
(String sFeature) Construct ElementProcessor that reports which feature is not support. -
Method Summary
Modifier and TypeMethodDescriptionprocess
(ProcessingContext context, XmlElement xmlElement) Process anXmlElement
to return a specific type of value.
-
Field Details
-
f_sFeature
The feature that is not supported
-
-
Constructor Details
-
UnsupportedFeatureProcessor
Construct ElementProcessor that reports which feature is not support.- Parameters:
sFeature
- the feature that is not supported
-
-
Method Details
-
process
public Object process(ProcessingContext context, XmlElement xmlElement) throws ConfigurationException Description copied from interface:ElementProcessor
Process anXmlElement
to return a specific type of value.- Specified by:
process
in interfaceElementProcessor<Object>
- Parameters:
context
- theProcessingContext
in which theXmlElement
is being processedxmlElement
- theXmlElement
to process- Returns:
- a value of type T
- Throws:
ConfigurationException
- when a configuration problem was encountered
-