Interface ProcessingContext
- All Superinterfaces:
- ResourceResolver
- All Known Implementing Classes:
- DefaultProcessingContext
ProcessingContext provides contextual information concerning the processing of content in an xml document.
 
 ProcessingContexts additionally provide mechanisms to:
 
- Request processing of other, typically sub xml content, like child XmlElements.
- Access the ResourceRegistryprovided to theDocumentProcessorassociated with theXmlDocumentbeing processed.
- Access the ParameterResolverprovided to theDocumentProcessorassociated with theXmlDocumentbeing processed.
- Define additional contextual state (such as cookies) that may be used for injecting values into beans during processing.
- Define specialized ElementProcessors andAttributeProcessors that may be used for processing and injecting beans in theProcessingContext.
- Since:
- Coherence 12.1.2
- Author:
- bo 2011.06.15
- 
Method SummaryModifier and TypeMethodDescription<T> voidAdds the specified named and typed cookie to theProcessingContext.<T> voidAdds the specified cookie to theProcessingContext.voiddefinePropertyPath(String sBeanPropertyName, String sXmlPath) Defines the xml path to locate a specific Java Bean property with in anXmlElementin theProcessingContext.ensureNamespaceHandler(String sPrefix, NamespaceHandler handler) Ensures that the specifiedNamespaceHandlerfor the specified prefix is defined in thisProcessingContext.ensureNamespaceHandler(String sPrefix, URI uri) Ensures that anNamespaceHandlerwith the specifiedURIis available for use in theProcessingContextwith the specified prefix.Obtains theClassLoaderto use for loading classes in theProcessingContext.<T> TLocates and returns the cookie with the specified type.<T> TLocates and returns the cookie with the specified type and name.Obtains theParameterResolverto use for resolving parameters defined externally to the document being processed (ie: the operating system or container)Obtains the configuredExpressionParserfor thisProcessingContext.<T> TgetMandatoryProperty(String sPath, Type typeProperty, XmlElement xmlElement) Obtains the strongly typed value for the property defined at the path relative to the specifiedXmlElement.getNamespaceHandler(String sPrefix) Obtains theNamespaceHandlerwhich is capable of processing the namespace with the specified prefix.getNamespaceHandler(URI uri) Obtains theNamespaceHandlerthat is capable of processing the namespace defined with the specifiedURI.Obtains theNamespaceHandlers that are currently in scope for thisProcessingContext.getNamespaceURI(String sPrefix) Obtains theURIthat is associated with the specified prefix.<T> TgetOptionalProperty(String sPath, Type typeProperty, T defaultValue, XmlElement xmlElement) Obtains the strongly typed value for the property defined at the path relative to the specifiedXmlElement.Obtains theResourceRegistryassociated with theProcessingContext.<B> Binject(B bean, XmlElement xmlElement) Given the information available in theProcessingContext, including the cookies, theResourceRegistrytheXmlElement, itsXmlAttributes and/or children, inject appropriately named and typed values into the specified bean (using setter injection).booleanisPropertyDefined(String sPath, XmlElement xmlElement) Determines if the specified property is defined at the path relative to the specifiedXmlElement.voidloadNamespaceHandlers(XmlElement xmlElement) Load all the customNamespaceHandlerinstances for the specifiedXmlElement.processDocument(XmlElement xmlElement) Request that the specifiedXmlElement(representing the root of an XmlDocument) be processed with appropriateNamespaceHandlers.processDocument(String sXml) Request that the specified xml string (representing an xml document) be processed with appropriateNamespaceHandlers.processDocumentAt(String sLocation) Request that the document specified by the URI/filename (containing the root of an XmlDocument) be processed with appropriateNamespaceHandlers.processDocumentAt(URI uri) Request that the document specified by the URI/filename (containing the root of an XmlDocument) be processed with appropriateNamespaceHandlers.processElement(XmlElement xmlElement) Request the specifiedXmlElementto be processed with an appropriateNamespaceHandlerknown by theProcessingContextor outerProcessingContexts.processElement(String sXml) Request the specified xml string be processed with an appropriateNamespaceHandlerknown by theProcessingContext.processElementsOf(XmlElement xmlElement) Request that all of the child elements contained with in the specifiedXmlElementbe processed using appropriateNamespaceHandlers known by theProcessingContext.processForeignElementsOf(XmlElement xmlElement) Request that all of the child elements contained within the specifiedXmlElementthat do not belong to the namespace of the saidXmlElementare processed using appropriate processes.<T> TprocessOnlyElementOf(XmlElement xmlElement) Request that the only child element contained within theXmlElementis processed using an appropriateNamespaceHandlerknown by theProcessingContext.<T> TprocessRemainingElementOf(XmlElement xmlElement) Request that the last remaining unprocessed child element contained within the specifiedXmlElementis processed using an appropriateElementProcessor.processRemainingElementsOf(XmlElement xmlElement) Request that the last remaining unprocessed children contained within the specifiedXmlElementare processed using appropriateElementProcessors.<T> voidregisterAttributeType(Class<T> clzType) Automatically creates and registers anAttributeProcessorfor the specified type.<T> voidregisterElementType(Class<T> clzType) Automatically creates and registers anElementProcessorfor the specified type.<T> voidregisterProcessor(Class<T> clzType, AttributeProcessor<T> processor) Registers anAttributeProcessorthat may be used to process specific types of values contained inXmlAttributes with in theProcessingContext.<T> voidregisterProcessor(Class<T> clzType, ElementProcessor<T> processor) Registers anElementProcessorthat may be used to process specific types of values contained inXmlElements with in theProcessingContext.Methods inherited from interface com.tangosol.util.ResourceResolvergetResource, getResource
- 
Method Details- 
getResourceRegistryResourceRegistry getResourceRegistry()Obtains theResourceRegistryassociated with theProcessingContext.- Returns:
- a ResourceRegistry
 
- 
getContextClassLoaderClassLoader getContextClassLoader()Obtains theClassLoaderto use for loading classes in theProcessingContext.- Returns:
- ClassLoader
 
- 
getDefaultParameterResolverParameterResolver getDefaultParameterResolver()Obtains theParameterResolverto use for resolving parameters defined externally to the document being processed (ie: the operating system or container)- Returns:
- the default ParameterResolver.
 
- 
addCookieAdds the specified named and typed cookie to theProcessingContext.If a cookie with the same name and type exists in the ProcessingContext, it will be replaced by the specified cookie. If a cookie with the same name and type has been defined in an outerProcessingContext, the specified cookie will hide the cookie defined in the outerProcessingContext.- Type Parameters:
- T- the type of the cookie
- Parameters:
- clzCookie- the class of the cookie
- sCookieName- the name of the cookie
- cookie- the cookie value
 
- 
addCookieAdds the specified cookie to theProcessingContext.If a cookie of the same type and name (being the name of the class of the said cookie) is already registered with the ProcessingContext, it will be replaced by the specified cookie.If a cookie of the same type and name has been defined in an outer ProcessingContext, the specified cookie will hide the cookie defined in the outerProcessingContext.This method is equivalent to calling: addCookie(clz, clz.getName(), cookie);- Type Parameters:
- T- the type of the cookie
- Parameters:
- clzCookie- the class of the cookie
- cookie- the cookie value
 
- 
getCookieLocates and returns the cookie with the specified type and name.Locating the cookie involves searching the current ProcessingContextfor a matching cookie. If one is not found, the search continues with outerProcessingContexts until a cookie is either located or there are no moreProcessingContexts, in which casenullis returned.- Type Parameters:
- T- the type of the cookie
- Parameters:
- clzCookie- the class of the cookie
- sCookieName- the name of the cookie
- Returns:
- the cookie or nullif not defined
 
- 
getCookieLocates and returns the cookie with the specified type.Locating the cookie involves searching the current ProcessingContextfor a matching cookie. If one is not found, the search continues with outerProcessingContexts until a cookie is either located or there are no moreProcessingContexts, in which casenullis returned.This method is equivalent to calling: getCookie(clz, clz.getName());- Type Parameters:
- T- the type of the cookie
- Parameters:
- clzCookie- the class of the cookie
- Returns:
- the cookie or nullif not defined
 
- 
definePropertyPathDefines the xml path to locate a specific Java Bean property with in anXmlElementin theProcessingContext.This method allows "alias" paths for Java Bean properties to be defined so that inject(Object, XmlElement)calls may resolve property values correctly.This is an advanced feature. Typically this is only used when: - A Java Bean property name does not match a named value, XmlElementorXmlAttributewith in aProcessingContext.
- A Java Bean property can not be located with in the ProcessingContext.
 - Parameters:
- sBeanPropertyName- the property name of the bean
- sXmlPath- the xmlPath to the property value
 
- A Java Bean property name does not match a named value, 
- 
registerProcessorRegisters anAttributeProcessorthat may be used to process specific types of values contained inXmlAttributes with in theProcessingContext.When an AttributeProcessorisn't provided by the associatedNamespaceHandlerfor anXmlAttribute, an attempt is made to use a type specificAttributeProcessorto process anXmlAttributefor injection (withinject(Object, XmlElement)).- Type Parameters:
- T- the type
- Parameters:
- clzType- the- Classtype
- processor- the- AttributeProcessorfor the type
 
- 
registerProcessorRegisters anElementProcessorthat may be used to process specific types of values contained inXmlElements with in theProcessingContext.When an ElementProcessorisn't provided by the associatedNamespaceHandlerfor anXmlElement, an attempt is made to use a type specificElementProcessorto process anXmlElementfor injection (withinject(Object, XmlElement)).- Type Parameters:
- T- the type
- Parameters:
- clzType- the- Classtype
- processor- the- ElementProcessorfor the type
 
- 
registerAttributeTypeAutomatically creates and registers anAttributeProcessorfor the specified type.Note: This assumes the type supports a String-based orXmlAttribute-based constructor.- Type Parameters:
- T- the type
- Parameters:
- clzType- the type for which to create and register an- AttributeProcessor
 
- 
registerElementTypeAutomatically creates and registers anElementProcessorfor the specified type.Note: This assumes the type supports a String-based orXmlElement-based constructor.- Type Parameters:
- T- the type
- Parameters:
- clzType- the type for which to create and register an- ElementProcessor
 
- 
getExpressionParserExpressionParser getExpressionParser()Obtains the configuredExpressionParserfor thisProcessingContext.- Returns:
- the ExpressionParser
 
- 
ensureNamespaceHandlerEnsures that anNamespaceHandlerwith the specifiedURIis available for use in theProcessingContextwith the specified prefix. If aNamespaceHandlerwith the specified prefix andURIis not defined by theProcessingContext, one is instantiated, registered and returned.- Parameters:
- sPrefix- the prefix of the Xml Namespace to use for the- NamespaceHandler
- uri- the- URIdetailing the location of the- NamespaceHandler. Typically this will be a java class URI, specified as "class://fully.qualified.class.name"
- Returns:
- an instance of the NamespaceHandlerthat is suitable for processing the prefix andURI
- Throws:
- ConfigurationException- when a configuration problem was encountered
 
- 
ensureNamespaceHandlerEnsures that the specifiedNamespaceHandlerfor the specified prefix is defined in thisProcessingContext.If a NamespaceHandlerfor the prefix does not exist in theProcessingContext, it is added. Otherwise the existingNamespaceHandlerfor the prefix is returned.- Parameters:
- sPrefix- the prefix of the xml Namespace to be associated with the- NamespaceHandler
- handler- the- NamespaceHandler
- Returns:
- the registered NamespaceHandlerfor theProcessingContext
 
- 
loadNamespaceHandlersLoad all the customNamespaceHandlerinstances for the specifiedXmlElement.- Parameters:
- xmlElement- the- XmlElementto load- NamespaceHandlerinstances for
- Throws:
- NullPointerException- if the- xmlElementparameter is- null
 
- 
getNamespaceHandlerObtains theNamespaceHandlerthat is capable of processing the namespace defined with the specifiedURI.- Parameters:
- uri- the Xml Namespace- URIof the- NamespaceHandlerto locate
- Returns:
- nullif a- NamespaceHandlercould not be located for the specified- URI
 
- 
getNamespaceHandlerObtains theNamespaceHandlerwhich is capable of processing the namespace with the specified prefix.- Parameters:
- sPrefix- the prefix of the xml namespace
- Returns:
- nullif a- NamespaceHandlercould not be located for the specified prefix
 
- 
getNamespaceURIObtains theURIthat is associated with the specified prefix.
- 
getNamespaceHandlersIterable<NamespaceHandler> getNamespaceHandlers()Obtains theNamespaceHandlers that are currently in scope for thisProcessingContext.- Returns:
- An Iterableover theNamespaceHandlers in scope.
 
- 
processDocumentAtRequest that the document specified by the URI/filename (containing the root of an XmlDocument) be processed with appropriateNamespaceHandlers.Should the document root contain any unrecognized xml namespaces, an attempt will be made to load appropriate NamespaceHandlers that of which will be used to process said elements in the document.- Parameters:
- uri- the- URIof the XmlDocument to process
- Returns:
- the result of the processing the root element of the document
- Throws:
- ConfigurationException- when a configuration problem was encountered
 
- 
processDocumentAtRequest that the document specified by the URI/filename (containing the root of an XmlDocument) be processed with appropriateNamespaceHandlers.Should the document root contain any unrecognized xml namespaces, an attempt will be made to load appropriate NamespaceHandlers that of which will be used to process said elements in the document.- Parameters:
- sLocation- the URI/filename of the XmlDocument to process
- Returns:
- the result of the processing the root element of the document
- Throws:
- ConfigurationException- when a configuration problem was encountered
 
- 
processDocumentRequest that the specifiedXmlElement(representing the root of an XmlDocument) be processed with appropriateNamespaceHandlers.Should the document root contain any unrecognized xml namespaces, an attempt will be made to load appropriate NamespaceHandlers that of which will be used to process said elements in the document.- Parameters:
- xmlElement- the root- XmlElementof the XmlDocument to process
- Returns:
- the result of the processing the root element of the document
         represented by the XmlElement
- Throws:
- ConfigurationException- when a configuration problem was encountered
 
- 
processDocumentRequest that the specified xml string (representing an xml document) be processed with appropriateNamespaceHandlers.Should the document root contain any unrecognized xml namespaces, an attempt will be made to load appropriate NamespaceHandlers that of which will be used to process said elements in the document.- Parameters:
- sXml- a string containing an xml document to process
- Returns:
- the result of processing the root element of the document
- Throws:
- ConfigurationException- when a configuration problem was encountered
 
- 
processElementRequest the specifiedXmlElementto be processed with an appropriateNamespaceHandlerknown by theProcessingContextor outerProcessingContexts.Note: Should the element contain any unrecognized xml namespaces, an attempt will be made to load appropriate NamespaceHandlers that of which will be used to process said elements.- Parameters:
- xmlElement- the- XmlElementto process
- Returns:
- the result of processing the XmlElementwith an appropriateElementProcessor
- Throws:
- ConfigurationException- when a configuration problem was encountered
 
- 
processElementRequest the specified xml string be processed with an appropriateNamespaceHandlerknown by theProcessingContext.Note: Should the element contain any unrecognized xml namespaces, an attempt will be made to load appropriate NamespaceHandlers that of which will be used to process said elements.- Parameters:
- sXml- the xml to process
- Returns:
- the result of processing the root element of the specified xml
- Throws:
- ConfigurationException- when a configuration problem was encountered
 
- 
processElementsOfRequest that all of the child elements contained with in the specifiedXmlElementbe processed using appropriateNamespaceHandlers known by theProcessingContext.This is a convenience method to aid in the processing of all children of an XmlElement. The keys of the returnedMaprepresent the id attributes each childXmlElement. If anXmlElementdoes not have a specified id attribute, a UUID is generated in it's place.- Parameters:
- xmlElement- the parent- XmlElementof the children to process
- Returns:
- a Mapfrom identifiable childXmlElements (with id="..." attributes) and their corresponding processed values
- Throws:
- ConfigurationException- when a configuration problem was encountered
 
- 
processForeignElementsOfRequest that all of the child elements contained within the specifiedXmlElementthat do not belong to the namespace of the saidXmlElementare processed using appropriate processes.This is a convenience method to aid in the processing of all children of an XmlElement. The keys of the returnedMaprepresent the id attributes each childXmlElement. If anXmlElementdoes not have a specified id attribute, a UUID is generated in it's place.- Parameters:
- xmlElement- the parent- XmlElementof the children to process
- Returns:
- a Mapfrom identifiable childXmlElements (with id="..." attributes) and their corresponding processed values
- Throws:
- ConfigurationException- when a configuration problem was encountered
 
- 
processOnlyElementOfRequest that the only child element contained within theXmlElementis processed using an appropriateNamespaceHandlerknown by theProcessingContext.- Type Parameters:
- T- the type
- Parameters:
- xmlElement- the- XmlElementin which the child is defined
- Returns:
- the result of processing the child element
- Throws:
- ConfigurationException- when a configuration problem was encountered, especially if there is zero or more than one child
 
- 
processRemainingElementOfRequest that the last remaining unprocessed child element contained within the specifiedXmlElementis processed using an appropriateElementProcessor.This is a convenience method to aid in the processing of an unprocessed child XmlElementof an element.- Type Parameters:
- T- the type
- Parameters:
- xmlElement- the parent- XmlElementof the unprocessed child to process
- Returns:
- the result of processing the child element
- Throws:
- ConfigurationException- if there are zero or more than one unprocessed child in the element, or if some other- ConfigurationExceptionoccurred
 
- 
processRemainingElementsOfRequest that the last remaining unprocessed children contained within the specifiedXmlElementare processed using appropriateElementProcessors.This is a convenience method to aid in the processing of an unprocessed child XmlElements of an element. The keys of the returnedMaprepresent the id attributes each childXmlElement. If anXmlElementdoes not have a specified id attribute, a UUID is generated in it's place.- Parameters:
- xmlElement- the parent- XmlElementof the unprocessed children to process
- Returns:
- a Mapfrom identifiable childXmlElements (with id="..." attributes) and their corresponding processed values
- Throws:
- ConfigurationException- when a configuration problem was encountered
 
- 
injectGiven the information available in theProcessingContext, including the cookies, theResourceRegistrytheXmlElement, itsXmlAttributes and/or children, inject appropriately named and typed values into the specified bean (using setter injection).The order in which values are located for injection is as follows; attributed defined by the element, child elements defined by the element, alternative paths to values defined in the ProcessingContext, cookies defined by theProcessingContextand finally theResourceRegistryassociated with theProcessingContext.- Type Parameters:
- B- the bean type
- Parameters:
- bean- the bean to be injected
- xmlElement- the- XmlElementfrom which values will be derived for injection into the bean
- Returns:
- the provided bean but with properties set based on the available values in the ProcessingContext
- Throws:
- ConfigurationException- if a configuration is not valid
 
- 
isPropertyDefinedDetermines if the specified property is defined at the path relative to the specifiedXmlElement.- Parameters:
- sPath- the path to the property
- xmlElement- the- XmlElementin which the property should be searched
- Returns:
- trueif the property is defined,- falseotherwise
- Throws:
- ConfigurationException- if a configuration is not valid
 
- 
getMandatoryProperty<T> T getMandatoryProperty(String sPath, Type typeProperty, XmlElement xmlElement) throws ConfigurationException Obtains the strongly typed value for the property defined at the path relative to the specifiedXmlElement. If the property is not defined or is of the incorrect type, aConfigurationExceptionis thrown.- Type Parameters:
- T- the type of the property
- Parameters:
- sPath- the path to the property
- typeProperty- the type of the property
- xmlElement- the- XmlElementcontaining the properties for the object
- Returns:
- the property value
- Throws:
- ConfigurationException- if a configuration is not valid, the property can't be located or is of the wrong type
 
- 
getOptionalProperty<T> T getOptionalProperty(String sPath, Type typeProperty, T defaultValue, XmlElement xmlElement) throws ConfigurationException Obtains the strongly typed value for the property defined at the path relative to the specifiedXmlElement. If the property is not defined, the defaultValue is returned.- Type Parameters:
- T- the type of the property
- Parameters:
- sPath- the path to the property
- typeProperty- the type of the property
- defaultValue- the value to return if the property is not found
- xmlElement- the- XmlElementcontaining the properties for the object
- Returns:
- the property value
- Throws:
- ConfigurationException- if a configuration is not valid
 
 
-