Uses of Class
org.craftercms.core.exception.XmlMergeException
Packages that use XmlMergeException
Package
Description
-
Uses of XmlMergeException in org.craftercms.core.controller.rest
Methods in org.craftercms.core.controller.rest that throw XmlMergeExceptionModifier and TypeMethodDescriptionContentStoreRestController.getChildren(org.springframework.web.context.request.WebRequest request, javax.servlet.http.HttpServletResponse response, String contextId, String url, boolean flatten) org.dom4j.DocumentContentStoreRestController.getDescriptor(org.springframework.web.context.request.WebRequest request, javax.servlet.http.HttpServletResponse response, String contextId, String url, boolean flatten) Deprecated.ContentStoreRestController.getItem(org.springframework.web.context.request.WebRequest request, javax.servlet.http.HttpServletResponse response, String contextId, String url, boolean flatten) ContentStoreRestController.getTree(org.springframework.web.context.request.WebRequest request, javax.servlet.http.HttpServletResponse response, String contextId, String url, Integer depth, boolean flatten) -
Uses of XmlMergeException in org.craftercms.core.service
Methods in org.craftercms.core.service that throw XmlMergeExceptionModifier and TypeMethodDescriptionContentStoreService.findChildren(Context context, String url) Returns the children of the folder at the given url, returning null if the folder can't be found.ContentStoreService.findChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor) Returns the children of the folder at the given url, returning null if the folder can't be found.ContentStoreService.findChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten) Returns the children of the folder at the given url, returning null if the folder can't be found.default ItemReturns the content store item for the given url, returning null if not found.default ItemContentStoreService.findItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor) Returns the content store item for the given url, returning null if not found.ContentStoreService.findItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor, boolean flatten) Returns the content store item for the given url, returning null if not found.default TreeReturns the folder at the given url as a tree, or null if the folder wasn't found.default TreeReturns the folder at the given url as a tree, or null if the folder wasn't found.default TreeContentStoreService.findTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor) Returns the folder at the given url as a tree, or null if the folder wasn't found.ContentStoreService.findTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten) Returns the folder at the given url as a tree, or null if the folder wasn't found.ContentStoreService.getChildren(Context context, String url) Returns the children of the folder at the given url.ContentStoreService.getChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor) Returns the children of the folder at the given url.ContentStoreService.getChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten) Returns the children of the folder at the given url.default ItemReturns the content store item for the given url.default ItemContentStoreService.getItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor) Returns the content store item for the given url.ContentStoreService.getItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor, boolean flatten) Returns the content store item for the given url.default TreeReturns the folder at the given url as a tree.default TreeReturns the folder at the given url as a tree.default TreeContentStoreService.getTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor) Returns the folder at the given url as a tree.ContentStoreService.getTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten) Returns the folder at the given url as a tree. -
Uses of XmlMergeException in org.craftercms.core.service.impl
Methods in org.craftercms.core.service.impl that throw XmlMergeExceptionModifier and TypeMethodDescriptionAbstractCachedContentStoreService.doFindChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten) ContentStoreServiceImpl.doFindChildren(Context context, CachingOptions cachingOptions, String url, Integer depth, ItemFilter filter, ItemProcessor processor, boolean flatten) Does the following: Retrieves the children from the underlying repository (without their descriptors). Filters the returned list ifItemFilter.runBeforeProcessing()returnstrue. CallsContentStoreService.getTree(Context, String)orContentStoreService.getItem(Context, String)for each item in the list (depending on whether the item is a folder or not, and ifdepthis not null), to obtain the merged and processed version of each item. Filters the processed list ifItemFilter.runAfterProcessing()returnstrue. Returns the final list of processed items.ContentStoreServiceImpl.doFindChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten) protected abstract ItemAbstractCachedContentStoreService.doFindItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor) protected ItemContentStoreServiceImpl.doFindItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor) Returns the content store item for the given url, returning null if not found.protected abstract TreeAbstractCachedContentStoreService.doFindTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten) protected TreeContentStoreServiceImpl.doFindTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten) AbstractCachedContentStoreService.findChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten) AbstractCachedContentStoreService.findItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor, boolean flatten) AbstractCachedContentStoreService.findTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten) AbstractCachedContentStoreService.getChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten) AbstractCachedContentStoreService.getItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor, boolean flatten) AbstractCachedContentStoreService.getTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten) -
Uses of XmlMergeException in org.craftercms.core.xml.mergers
Methods in org.craftercms.core.xml.mergers that throw XmlMergeExceptionModifier and TypeMethodDescriptionDescriptorMergeStrategy.getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom) Returns the list of descriptors in the order they should be merged, given the URI of the primary descriptor.DescriptorMergeStrategy.getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom, boolean mainDescriptorOptional) Returns the list of descriptors in the order they should be merged, given the URI of the primary descriptor.org.dom4j.DocumentMerges a set of XML DOM descriptors into a new DOM. -
Uses of XmlMergeException in org.craftercms.core.xml.mergers.impl
Methods in org.craftercms.core.xml.mergers.impl that throw XmlMergeException -
Uses of XmlMergeException in org.craftercms.core.xml.mergers.impl.cues
Methods in org.craftercms.core.xml.mergers.impl.cues that throw XmlMergeException -
Uses of XmlMergeException in org.craftercms.core.xml.mergers.impl.cues.impl
Methods in org.craftercms.core.xml.mergers.impl.cues.impl that throw XmlMergeExceptionModifier and TypeMethodDescriptionprotected StringMergeParentAndChildMergeCue.getMergeOrder(Map<String, String> mergeParams) org.dom4j.ElementMergeParentAndChildMergeCue.merge(org.dom4j.Element parent, org.dom4j.Element child, Map<String, String> params) org.dom4j.ElementUseChildIfNotEmptyMergeCue.merge(org.dom4j.Element parent, org.dom4j.Element child, Map<String, String> params) org.dom4j.ElementUseChildMergeCue.merge(org.dom4j.Element parent, org.dom4j.Element child, Map<String, String> params) org.dom4j.ElementUseParentIfNotEmptyMergeCue.merge(org.dom4j.Element parent, org.dom4j.Element child, Map<String, String> params) org.dom4j.ElementUseParentMergeCue.merge(org.dom4j.Element parent, org.dom4j.Element child, Map<String, String> params) -
Uses of XmlMergeException in org.craftercms.core.xml.mergers.impl.strategies
Methods in org.craftercms.core.xml.mergers.impl.strategies that throw XmlMergeExceptionModifier and TypeMethodDescriptionAbstractInheritFromHierarchyMergeStrategy.getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom) AbstractInheritFromHierarchyMergeStrategy.getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom, boolean mainDescriptorOptional) ContentBundleMergeStrategy.getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom) ContentBundleMergeStrategy.getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom, boolean mainDescriptorOptional) ExplicitParentMergeStrategy.getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom) ExplicitParentMergeStrategy.getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom, boolean mainDescriptorOptional) SingleFileMergeStrategy.getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom) SingleFileMergeStrategy.getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom, boolean mainDescriptorOptional)
getIteminstead