Class CacheDefaultsPreprocessor
- All Implemented Interfaces:
DocumentElementPreprocessor.ElementPreprocessor
CacheDefaultsPreprocessor
is an DocumentElementPreprocessor.ElementPreprocessor
that introduces (via cloning) default xml
content for xml elements where the said content is missing.
Ultimately this DocumentElementPreprocessor.ElementPreprocessor
is designed to perform pre-processing of Coherence Cache <defaults>
declarations, inserting them into the appropriate places in cache-config.xml documents.
- Since:
- Coherence 12.1.2
- Author:
- bo 2011.12.16
- See Also:
-
Constructor Summary
ConstructorDescriptionCacheDefaultsPreprocessor
(String sDefaultsParentPath) Constructs aCacheDefaultsPreprocessor
with a specific path to where default element content can be located. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addDefaultDefinition
(String sRequiredElementParentPath, String sRequiredElementName) Adds a requirement that the specified "default" element must be added to (if not already defined) in the element specified by the defined parent path.boolean
preprocess
(ProcessingContext context, XmlElement element) Process anXmlElement
, optionally mutating it (or it's children) if required.
-
Constructor Details
-
CacheDefaultsPreprocessor
Constructs aCacheDefaultsPreprocessor
with a specific path to where default element content can be located.Example:
new DefaultPreprocessor("/defaults");
- Parameters:
sDefaultsParentPath
- the absolute path to theXmlElement
that contains (is the parent of) the default elements
-
-
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)
-
addDefaultDefinition
Adds a requirement that the specified "default" element must be added to (if not already defined) in the element specified by the defined parent path.Paths used by this method are based those defined by the
XmlHelper.findElement(XmlElement, String)
method, with the exception that ".." is not supported.For example 1: The following call specifies that the "serializer" should be cloned from the defined default path if it doesn't exist in the "/caching-schemes/distributed-scheme" element.
addDefaultDefinition("/caching-schemes/distributed-scheme", "serializer");
For example 2: The following call specifies that the "serializer" should be cloned from the defined default path if it doesn't exist in any "distributed-scheme" elements
addDefaultDefinition("distributed-scheme", "serializer");
- Parameters:
sRequiredElementParentPath
- the path of the parent for the required elementsRequiredElementName
- the name of the element that should be cloned (if it doesn't exist in the specified parent path) from the defined default element path
-