Class TCPAcceptorPreprocessor
java.lang.Object
com.tangosol.coherence.config.xml.preprocessor.TCPAcceptorPreprocessor
- All Implemented Interfaces:
DocumentElementPreprocessor.ElementPreprocessor
public class TCPAcceptorPreprocessor
extends Object
implements DocumentElementPreprocessor.ElementPreprocessor
A
TCPAcceptorPreprocessor is an DocumentElementPreprocessor.ElementPreprocessor that
introduces re-writes <tcp-acceptor> configuration elements, in
particular <local-address> declarations into an <address-provider> containing
a <local-address>.- Since:
- Coherence 12.1.3
- Author:
- bko 2013.07.03
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanpreprocess(ProcessingContext context, XmlElement xmlElement) Process anXmlElement, optionally mutating it (or it's children) if required.
-
Constructor Details
-
TCPAcceptorPreprocessor
public TCPAcceptorPreprocessor()
-
-
Method Details
-
preprocess
public boolean preprocess(ProcessingContext context, XmlElement xmlElement) 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
XmlElements. If you wish to manually traverse or change the entire document, you should instead use aDocumentPreprocessor.- Specified by:
preprocessin interfaceDocumentElementPreprocessor.ElementPreprocessor- Parameters:
context- theProcessingContextin which the pre-processing is occurringxmlElement- theXmlElementto preprocess- Returns:
trueif the specifiedXmlElementshould be re-preprocessed by this and otherDocumentElementPreprocessor.ElementPreprocessors due to theXmlElementbeing modified,falseotherwise.- Throws:
ConfigurationException- if during pre-processing of theXmlElementa configuration issue was discovered (or if pre-processing fails for some reason)
-