Class OperationalConfigNamespaceHandler
- java.lang.Object
-
- com.tangosol.config.xml.AbstractNamespaceHandler
-
- com.tangosol.coherence.config.xml.OperationalConfigNamespaceHandler
-
- All Implemented Interfaces:
NamespaceHandler
public class OperationalConfigNamespaceHandler extends AbstractNamespaceHandler
TheOperationalConfigNamespaceHandler
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
Nested Classes Modifier and Type Class Description static interface
OperationalConfigNamespaceHandler.Extension
Implementations ofOperationalConfigNamespaceHandler.Extension
are able to modify theOperationalConfigNamespaceHandler
before it is used.
-
Constructor Summary
Constructors Constructor Description OperationalConfigNamespaceHandler()
Standard Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
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
-
-
-
-
Method Detail
-
onStartNamespace
public void onStartNamespace(ProcessingContext context, XmlElement element, String prefix, URI uri)
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
-
-