Class UnsupportedFeatureProcessor
- java.lang.Object
-
- com.tangosol.coherence.config.xml.processor.UnsupportedFeatureProcessor
-
- All Implemented Interfaces:
ElementProcessor<Object>
public class UnsupportedFeatureProcessor extends Object implements 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
Fields Modifier and Type Field Description protected String
f_sFeature
The feature that is not supported
-
Constructor Summary
Constructors Constructor Description UnsupportedFeatureProcessor(String sFeature)
Construct ElementProcessor that reports which feature is not support.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
process(ProcessingContext context, XmlElement xmlElement)
Process anXmlElement
to return a specific type of value.
-
-
-
Field Detail
-
f_sFeature
protected final String f_sFeature
The feature that is not supported
-
-
Constructor Detail
-
UnsupportedFeatureProcessor
public UnsupportedFeatureProcessor(String sFeature)
Construct ElementProcessor that reports which feature is not support.- Parameters:
sFeature
- the feature that is not supported
-
-
Method Detail
-
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
-
-