Class ExtendPreprocessor
java.lang.Object
com.tangosol.coherence.config.xml.preprocessor.ExtendPreprocessor
- All Implemented Interfaces:
DocumentElementPreprocessor.ElementPreprocessor
public class ExtendPreprocessor
extends Object
implements DocumentElementPreprocessor.ElementPreprocessor
An
ExtendPreprocessor
is an DocumentElementPreprocessor.ElementPreprocessor
that will
inject an "acceptor-config" XmlElement
into a "proxy-scheme"
XmlElement
if one does not exist.- Since:
- Coherence 12.1.3
- Author:
- lh 2013.07.09
-
Field Summary
Modifier and TypeFieldDescriptionstatic final ExtendPreprocessor
This singleton instance of theExtendPreprocessor
. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
preprocess
(ProcessingContext context, XmlElement element) Process anXmlElement
, optionally mutating it (or it's children) if required.
-
Field Details
-
INSTANCE
This singleton instance of theExtendPreprocessor
.
-
-
Constructor Details
-
ExtendPreprocessor
public ExtendPreprocessor()
-
-
Method Details
-
preprocess
public boolean preprocess(ProcessingContext context, XmlElement element) throws ConfigurationException Process anXmlElement
, optionally mutating it (or it's children) if required.Note: An implementation of this interface should avoid attempting to traverse child
XmlElement
s. If you wish to manually traverse or change the entire document, you should instead use aDocumentPreprocessor
.- Specified by:
preprocess
in interfaceDocumentElementPreprocessor.ElementPreprocessor
- Parameters:
context
- theProcessingContext
in which the pre-processing is occurringelement
- theXmlElement
to preprocess- Returns:
true
if the specifiedXmlElement
should be re-preprocessed by this and otherDocumentElementPreprocessor.ElementPreprocessor
s due to theXmlElement
being modified,false
otherwise.- Throws:
ConfigurationException
- if during pre-processing of theXmlElement
a configuration issue was discovered (or if pre-processing fails for some reason)
-