Uses of Interface
com.tangosol.config.xml.NamespaceHandler
-
Packages that use NamespaceHandler Package Description com.oracle.coherence.cdi.server Simple CDI-based Cache Server implementation.com.tangosol.coherence.config.xml Defines the Xml Document Pre-Processors and Xml Element Processors for converting Coherence Cache Configuration files into Coherence configuration object models.com.tangosol.coherence.jcache Contains classes related to Coherence JCache.com.tangosol.config.xml Defines classes and interfaces for processing Xml documents and building object models, like configuration, based on said documents though the use of injection. -
-
Uses of NamespaceHandler in com.oracle.coherence.cdi.server
Classes in com.oracle.coherence.cdi.server that implement NamespaceHandler Modifier and Type Class Description class
CdiNamespaceHandler
Custom namespace handler forcdi
namespace. -
Uses of NamespaceHandler in com.tangosol.coherence.config.xml
Classes in com.tangosol.coherence.config.xml that implement NamespaceHandler Modifier and Type Class Description class
CacheConfigNamespaceHandler
TheCacheConfigNamespaceHandler
is responsible for capturing and creating Coherence Cache Configurations when processing a Coherence Configuration file.class
OperationalConfigNamespaceHandler
TheOperationalConfigNamespaceHandler
is responsible for capturing and creating the Coherence operational configuration when processing a Coherence operational configuration file. -
Uses of NamespaceHandler in com.tangosol.coherence.jcache
Classes in com.tangosol.coherence.jcache that implement NamespaceHandler Modifier and Type Class Description class
JCacheExtendNamespace
ANamespaceHandler
to enable and enhance Coherence-based configurations to be used with the Coherence-based JCache Extend implementationclass
JCacheNamespace
ANamespaceHandler
to enable and enhance Coherence-based configurations to be used with the Coherence-based JCache implementation -
Uses of NamespaceHandler in com.tangosol.config.xml
Classes in com.tangosol.config.xml that implement NamespaceHandler Modifier and Type Class Description class
AbstractNamespaceHandler
AnAbstractNamespaceHandler
provides a base implementation of aNamespaceHandler
with support for implicit and explicit registration ofElementProcessor
s andAttributeProcessor
s for those xml attributes and elements occurring in the associated xml namespace.Methods in com.tangosol.config.xml that return NamespaceHandler Modifier and Type Method Description NamespaceHandler
DefaultProcessingContext. ensureNamespaceHandler(String sPrefix, NamespaceHandler handler)
Ensures that the specifiedNamespaceHandler
for the specified prefix is defined in thisProcessingContext
.NamespaceHandler
DefaultProcessingContext. ensureNamespaceHandler(String sPrefix, URI uri)
Ensures that anNamespaceHandler
with the specifiedURI
is available for use in theProcessingContext
with the specified prefix.NamespaceHandler
ProcessingContext. ensureNamespaceHandler(String sPrefix, NamespaceHandler handler)
Ensures that the specifiedNamespaceHandler
for the specified prefix is defined in thisProcessingContext
.NamespaceHandler
ProcessingContext. ensureNamespaceHandler(String sPrefix, URI uri)
Ensures that anNamespaceHandler
with the specifiedURI
is available for use in theProcessingContext
with the specified prefix.NamespaceHandler
DocumentProcessor.DefaultDependencies. getDefaultNamespaceHandler()
TheNamespaceHandler
for the default (ie: unspecified) xml namespace.NamespaceHandler
DocumentProcessor.Dependencies. getDefaultNamespaceHandler()
TheNamespaceHandler
for the default (ie: unspecified) xml namespace.NamespaceHandler
DefaultProcessingContext. getNamespaceHandler(String sPrefix)
Obtains theNamespaceHandler
which is capable of processing the namespace with the specified prefix.NamespaceHandler
DefaultProcessingContext. getNamespaceHandler(URI uri)
Obtains theNamespaceHandler
that is capable of processing the namespace defined with the specifiedURI
.NamespaceHandler
ProcessingContext. getNamespaceHandler(String sPrefix)
Obtains theNamespaceHandler
which is capable of processing the namespace with the specified prefix.NamespaceHandler
ProcessingContext. getNamespaceHandler(URI uri)
Obtains theNamespaceHandler
that is capable of processing the namespace defined with the specifiedURI
.Methods in com.tangosol.config.xml that return types with arguments of type NamespaceHandler Modifier and Type Method Description Iterable<NamespaceHandler>
DefaultProcessingContext. getNamespaceHandlers()
Obtains theNamespaceHandler
s that are currently in scope for thisProcessingContext
.Iterable<NamespaceHandler>
ProcessingContext. getNamespaceHandlers()
Obtains theNamespaceHandler
s that are currently in scope for thisProcessingContext
.Methods in com.tangosol.config.xml with parameters of type NamespaceHandler Modifier and Type Method Description NamespaceHandler
DefaultProcessingContext. ensureNamespaceHandler(String sPrefix, NamespaceHandler handler)
Ensures that the specifiedNamespaceHandler
for the specified prefix is defined in thisProcessingContext
.NamespaceHandler
ProcessingContext. ensureNamespaceHandler(String sPrefix, NamespaceHandler handler)
Ensures that the specifiedNamespaceHandler
for the specified prefix is defined in thisProcessingContext
.DocumentProcessor.DefaultDependencies
DocumentProcessor.DefaultDependencies. setDefaultNamespaceHandler(NamespaceHandler handler)
Sets theNamespaceHandler
for the default namespace of documents to be processedConstructors in com.tangosol.config.xml with parameters of type NamespaceHandler Constructor Description DefaultDependencies(NamespaceHandler handler)
Constructs aDocumentProcessor.DefaultDependencies
with a defaultNamespaceHandler
.
-