Class OperationalConfigNamespaceHandler
java.lang.Object
com.tangosol.config.xml.AbstractNamespaceHandler
com.tangosol.coherence.config.xml.OperationalConfigNamespaceHandler
- All Implemented Interfaces:
NamespaceHandler
The
OperationalConfigNamespaceHandler
is responsible for capturing and
creating the Coherence operational configuration when processing a Coherence
operational configuration file.- Since:
- Coherence 12.2.1
- Author:
- pfm 2013.03.21
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Implementations ofOperationalConfigNamespaceHandler.Extension
are able to modify theOperationalConfigNamespaceHandler
before it is used. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onStartNamespace
(ProcessingContext context, XmlElement element, String prefix, URI uri) Called when the xml namespace associated with theNamespaceHandler
is first encountered in an xml document.Methods inherited from class com.tangosol.config.xml.AbstractNamespaceHandler
getAttributeProcessor, getAttributeProcessor, getDocumentPreprocessor, getElementProcessor, getElementProcessor, onEndNamespace, onUnknownAttribute, onUnknownElement, registerAttributeType, registerElementType, registerProcessor, registerProcessor, registerProcessor, setDocumentPreprocessor
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.tangosol.config.xml.NamespaceHandler
getOverrideProcessor
-
Constructor Details
-
OperationalConfigNamespaceHandler
public OperationalConfigNamespaceHandler()Standard Constructor.
-
-
Method Details
-
onStartNamespace
Called when the xml namespace associated with theNamespaceHandler
is first encountered in an xml document.- Specified by:
onStartNamespace
in interfaceNamespaceHandler
- Overrides:
onStartNamespace
in classAbstractNamespaceHandler
- Parameters:
context
- the documentProcessingContext
in which the xml namespace was encounteredelement
- theXmlElement
in which the xml namespace was encounteredprefix
- the prefix of the declared xml namespaceuri
- theURI
of the declared xml namespace
-