| Modifier and Type | Method and Description |
|---|---|
Item |
ItemProcessor.process(Context context,
CachingOptions cachingOptions,
Item item)
Processes an
Item. |
| Modifier and Type | Method and Description |
|---|---|
protected Item |
IncludeDescriptorsProcessor.getItemToInclude(Context context,
CachingOptions cachingOptions,
String includeSrcPath) |
protected void |
IncludeDescriptorsProcessor.includeDescriptors(Context context,
CachingOptions cachingOptions,
Item item) |
Item |
ItemProcessorPipeline.process(Context context,
CachingOptions cachingOptions,
Item item)
Processes the given
Item, by calling a pipeline of processors. |
Item |
TextMetaDataCollectionExtractingProcessor.process(Context context,
CachingOptions cachingOptions,
Item item)
For every XPath query provided in
metaDataNodesXPathQueries, a list of nodes is selected and for each
one of these nodes its text value is extracted and added to a list that is later put in the item's properties. |
Item |
AbstractTaggingProcessor.process(Context context,
CachingOptions cachingOptions,
Item item) |
Item |
AttributeAddingProcessor.process(Context context,
CachingOptions cachingOptions,
Item item) |
Item |
TextMetaDataExtractingProcessor.process(Context context,
CachingOptions cachingOptions,
Item item)
For every XPath query provided in
metaDataNodesXPathQueries, a single node is selected and its text
value is extracted and put in the item's properties. |
Item |
ItemUrlTransformingProcessor.process(Context context,
CachingOptions cachingOptions,
Item item) |
Item |
FieldRenamingProcessor.process(Context context,
CachingOptions cachingOptions,
Item item) |
Item |
IncludeDescriptorsProcessor.process(Context context,
CachingOptions cachingOptions,
Item item)
Replaces special include tags found in a descriptor document with the document tree of descriptors specified in
these include tags.
|
| Modifier and Type | Method and Description |
|---|---|
Item |
TemplateProcessor.process(Context context,
CachingOptions cachingOptions,
Item item)
Processes the content of certain nodes (found by the
NodeScanner in the item's descriptor as templates,
by compiling the node text templates through the templateCompiler and then processing the compiled
template with a model returned by modelFactory. |
| Modifier and Type | Class and Description |
|---|---|
class |
ContextImpl
Default
Context implementation. |
| Modifier and Type | Method and Description |
|---|---|
Context |
ContentStoreService.createContext(String storeType,
String storeServerUrl,
String username,
String password,
String rootFolderPath,
boolean mergingOn,
boolean cacheOn,
int maxAllowedItemsInCache,
boolean ignoreHiddenFiles)
Returns a new context with the specified params, login in to a remote repository (if needed) and creating a
new cache scope associated to the context.
|
Context |
ContentStoreService.getContext(String contextId)
Returns the open
Context for the given ID, or null if no context found for the ID. |
| Modifier and Type | Method and Description |
|---|---|
void |
CacheService.addScope(Context context)
Adds a new scope to the cache for the given context.
|
void |
CacheService.clearScope(Context context)
Clears the contents of the scope of the given context.
|
boolean |
ContentStoreService.destroyContext(Context context)
Destroys the specified context, login out of any remote repository (if a login was issued) and destroying the
cache scope associated to the context.
|
boolean |
ContentStoreService.exists(Context context,
String url)
Returns true if the file or folder at the specified URL exists
|
List<Item> |
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.
|
List<Item> |
ContentStoreService.findChildren(Context context,
String url)
Returns the children of the folder at the given url, returning null if the folder can't be found.
|
Content |
ContentStoreService.findContent(Context context,
CachingOptions cachingOptions,
String url)
Returns the content of the file for the given url, returning null if not found.
|
Content |
ContentStoreService.findContent(Context context,
String url)
Returns the content of the file for the given url, returning null if not found.
|
Item |
ContentStoreService.findItem(Context context,
CachingOptions cachingOptions,
String url,
ItemProcessor processor)
Returns the content store item for the given url, returning null if not found.
|
Item |
ContentStoreService.findItem(Context context,
String url)
Returns the content store item for the given url, returning null if not found.
|
Tree |
ContentStoreService.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.
|
Tree |
ContentStoreService.findTree(Context context,
String url)
Returns the folder at the given url as a tree, or null if the folder wasn't found.
|
Tree |
ContentStoreService.findTree(Context context,
String url,
int depth)
Returns the folder at the given url as a tree, or null if the folder wasn't found.
|
Object |
CacheService.get(Context context,
Object key)
Retrieves an item's value from the scope of the given context, or null if not found.
|
List<Item> |
ContentStoreService.getChildren(Context context,
CachingOptions cachingOptions,
String url,
ItemFilter filter,
ItemProcessor processor)
Returns the children of the folder at the given url.
|
List<Item> |
ContentStoreService.getChildren(Context context,
String url)
Returns the children of the folder at the given url.
|
Content |
ContentStoreService.getContent(Context context,
CachingOptions cachingOptions,
String url)
Returns the content of the file for the given url.
|
Content |
ContentStoreService.getContent(Context context,
String url)
Returns the content of the file for the given url.
|
Item |
ContentStoreService.getItem(Context context,
CachingOptions cachingOptions,
String url,
ItemProcessor processor)
Returns the content store item for the given url.
|
CacheItem |
CacheService.getItem(Context context,
Object key)
Retrieves an item from the scope of the given context, or null if not found.
|
Item |
ContentStoreService.getItem(Context context,
String url)
Returns the content store item for the given url.
|
Collection<?> |
CacheService.getKeys(Context context)
Returns a list of the keys of the items present in the scope of the given context.
|
int |
CacheService.getSize(Context context)
Returns the quantity of items present in scope of the given context.
|
CacheStatistics |
CacheService.getStatistics(Context context)
Returns the statistics for the scope of the given context.
|
Tree |
ContentStoreService.getTree(Context context,
CachingOptions cachingOptions,
String url,
int depth,
ItemFilter filter,
ItemProcessor processor)
Returns the folder at the given url as a tree.
|
Tree |
ContentStoreService.getTree(Context context,
String url)
Returns the folder at the given url as a tree.
|
Tree |
ContentStoreService.getTree(Context context,
String url,
int depth)
Returns the folder at the given url as a tree.
|
boolean |
CacheService.hasKey(Context context,
Object key)
Returns true if there's and item with the specified key in the scope of the given context.
|
boolean |
CacheService.hasScope(Context context)
Returns true if the scope of the given context exists.
|
void |
CacheService.put(Context context,
Object key,
Object value)
Puts an item in the scope of the given context.
|
void |
CacheService.put(Context context,
Object key,
Object value,
CachingOptions cachingOptions,
CacheLoader loader,
Object... loaderParams)
Puts and item in the scope of the given context.
|
boolean |
CacheService.remove(Context context,
Object key)
Removes an item from the scope of the given context.
|
void |
CacheService.removeScope(Context context)
Removes the scope associated to the given context
|
boolean |
ContentStoreService.validate(Context context)
Returns true if the specified context is still valid and usable.
|
| Modifier and Type | Field and Description |
|---|---|
protected Map<String,Context> |
ContentStoreServiceImpl.contexts
Map of open
Contexts |
| Modifier and Type | Method and Description |
|---|---|
Context |
ContentStoreServiceImpl.createContext(String storeType,
String storeServerUrl,
String username,
String password,
String rootFolderPath,
boolean mergingOn,
boolean cacheOn,
int maxAllowedItemsInCache,
boolean ignoreHiddenFiles)
Returns a new context with the specified params, login in to a remote repository (if needed) and creating a
new cache scope associated to the context.
|
Context |
ContentStoreServiceImpl.getContext(String contextId)
Returns the open
Context for the given ID, or null if no context found for the ID. |
| Modifier and Type | Method and Description |
|---|---|
void |
CacheServiceImpl.addScope(Context context) |
void |
CacheServiceImpl.clearScope(Context context) |
boolean |
ContentStoreServiceImpl.destroyContext(Context context)
Destroys the specified context, login out of any remote repository (if a login was issued) and destroying the
cache scope associated to the context.
|
protected List<Item> |
ContentStoreServiceImpl.doFindChildren(Context context,
CachingOptions cachingOptions,
String url,
Integer depth,
ItemFilter filter,
ItemProcessor processor)
Does the following:
Retrieves the children from the underlying repository (without their descriptors).
Filters the returned list if
ItemFilter.runBeforeProcessing() returns true.
Calls AbstractCachedContentStoreService.getTree(Context, String) or AbstractCachedContentStoreService.getItem(Context, String) for each item in the list
(depending on whether the item is a folder or not, and if depth is not null), to obtain the
merged and processed version of each item.
Filters the processed list if ItemFilter.runAfterProcessing() returns true.
Returns the final list of processed items.
|
protected List<Item> |
ContentStoreServiceImpl.doFindChildren(Context context,
CachingOptions cachingOptions,
String url,
ItemFilter filter,
ItemProcessor processor) |
protected abstract List<Item> |
AbstractCachedContentStoreService.doFindChildren(Context context,
CachingOptions cachingOptions,
String url,
ItemFilter filter,
ItemProcessor processor) |
protected Item |
ContentStoreServiceImpl.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 Item |
AbstractCachedContentStoreService.doFindItem(Context context,
CachingOptions cachingOptions,
String url,
ItemProcessor processor) |
protected Tree |
ContentStoreServiceImpl.doFindTree(Context context,
CachingOptions cachingOptions,
String url,
int depth,
ItemFilter filter,
ItemProcessor processor) |
protected abstract Tree |
AbstractCachedContentStoreService.doFindTree(Context context,
CachingOptions cachingOptions,
String url,
int depth,
ItemFilter filter,
ItemProcessor processor) |
protected Item |
ContentStoreServiceImpl.doMerging(Context context,
CachingOptions cachingOptions,
Item item)
Executes merging for the specified
Item:
Gets the DescriptorMergeStrategy for the item's descriptor from
the DescriptorMergeStrategyResolver.
Gets the actual descriptors to merge from the returned merge strategy.
Retrieves the descriptor documents from the underlying repository.
Merges the descriptor documents.
Returns the item with the merged descriptor document.
|
protected Item |
ContentStoreServiceImpl.doProcessing(Context context,
CachingOptions cachingOptions,
Item item,
ItemProcessor additionalProcessor)
Executes processing for the specified
Item:
Gets the main ItemProcessor for the item from the ItemProcessorResolver.
Calls the main processor's process method to process the item.
If an additional processor was passed to this method, the additional processor is also called.
Returns the processed item.
|
boolean |
ContentStoreServiceImpl.exists(Context context,
String url) |
List<Item> |
AbstractCachedContentStoreService.findChildren(Context context,
CachingOptions cachingOptions,
String url,
ItemFilter filter,
ItemProcessor processor) |
List<Item> |
AbstractCachedContentStoreService.findChildren(Context context,
String url) |
Content |
ContentStoreServiceImpl.findContent(Context context,
CachingOptions cachingOptions,
String url) |
Content |
ContentStoreServiceImpl.findContent(Context context,
String url) |
Item |
AbstractCachedContentStoreService.findItem(Context context,
CachingOptions cachingOptions,
String url,
ItemProcessor processor) |
Item |
AbstractCachedContentStoreService.findItem(Context context,
String url) |
Tree |
AbstractCachedContentStoreService.findTree(Context context,
CachingOptions cachingOptions,
String url,
int depth,
ItemFilter filter,
ItemProcessor processor) |
Tree |
AbstractCachedContentStoreService.findTree(Context context,
String url) |
Tree |
AbstractCachedContentStoreService.findTree(Context context,
String url,
int depth) |
Object |
CacheServiceImpl.get(Context context,
Object key) |
List<Item> |
AbstractCachedContentStoreService.getChildren(Context context,
CachingOptions cachingOptions,
String url,
ItemFilter filter,
ItemProcessor processor) |
List<Item> |
AbstractCachedContentStoreService.getChildren(Context context,
String url) |
Content |
ContentStoreServiceImpl.getContent(Context context,
CachingOptions cachingOptions,
String url)
Returns the content of the file for the given url.
|
Content |
ContentStoreServiceImpl.getContent(Context context,
String url)
Returns the content of the file for the given url.
|
Item |
AbstractCachedContentStoreService.getItem(Context context,
CachingOptions cachingOptions,
String url,
ItemProcessor processor) |
CacheItem |
CacheServiceImpl.getItem(Context context,
Object key) |
Item |
AbstractCachedContentStoreService.getItem(Context context,
String url) |
Collection<?> |
CacheServiceImpl.getKeys(Context context) |
int |
CacheServiceImpl.getSize(Context context) |
CacheStatistics |
CacheServiceImpl.getStatistics(Context context) |
Tree |
AbstractCachedContentStoreService.getTree(Context context,
CachingOptions cachingOptions,
String url,
int depth,
ItemFilter filter,
ItemProcessor processor) |
Tree |
AbstractCachedContentStoreService.getTree(Context context,
String url) |
Tree |
AbstractCachedContentStoreService.getTree(Context context,
String url,
int depth) |
boolean |
CacheServiceImpl.hasKey(Context context,
Object key) |
boolean |
CacheServiceImpl.hasScope(Context context) |
void |
CacheServiceImpl.put(Context context,
Object key,
Object value) |
void |
CacheServiceImpl.put(Context context,
Object key,
Object value,
CachingOptions cachingOptions,
CacheLoader loader,
Object... loaderParams) |
boolean |
CacheServiceImpl.remove(Context context,
Object key) |
void |
CacheServiceImpl.removeScope(Context context) |
boolean |
ContentStoreServiceImpl.validate(Context context) |
| Modifier and Type | Method and Description |
|---|---|
Context |
ContentStoreAdapter.createContext(String id,
String storeServerUrl,
String username,
String password,
String rootFolderPath,
boolean mergingOn,
boolean cacheOn,
int maxAllowedItemsInCache,
boolean ignoreHiddenFiles) |
| Modifier and Type | Method and Description |
|---|---|
void |
ContentStoreAdapter.destroyContext(Context context) |
boolean |
ContentStoreAdapter.exists(Context context,
String path) |
Content |
ContentStoreAdapter.findContent(Context context,
CachingOptions cachingOptions,
String path) |
Item |
ContentStoreAdapter.findItem(Context context,
CachingOptions cachingOptions,
String path,
boolean withDescriptor) |
List<Item> |
ContentStoreAdapter.findItems(Context context,
CachingOptions cachingOptions,
String path,
boolean withDescriptor) |
boolean |
ContentStoreAdapter.validate(Context context) |
| Modifier and Type | Method and Description |
|---|---|
protected Content |
AbstractFileBasedContentStoreAdapter.doFindContent(Context context,
CachingOptions cachingOptions,
String path) |
protected abstract Content |
AbstractCachedContentStoreAdapter.doFindContent(Context context,
CachingOptions cachingOptions,
String path) |
protected Item |
AbstractFileBasedContentStoreAdapter.doFindItem(Context context,
CachingOptions cachingOptions,
String path,
boolean withDescriptor) |
protected abstract Item |
AbstractCachedContentStoreAdapter.doFindItem(Context context,
CachingOptions cachingOptions,
String path,
boolean withDescriptor) |
protected List<Item> |
AbstractFileBasedContentStoreAdapter.doFindItems(Context context,
CachingOptions cachingOptions,
String path,
boolean withDescriptor) |
protected abstract List<Item> |
AbstractCachedContentStoreAdapter.doFindItems(Context context,
CachingOptions cachingOptions,
String path,
boolean withDescriptor) |
boolean |
AbstractFileBasedContentStoreAdapter.exists(Context context,
String path) |
Content |
AbstractCachedContentStoreAdapter.findContent(Context context,
CachingOptions cachingOptions,
String path) |
protected abstract File |
AbstractFileBasedContentStoreAdapter.findFile(Context context,
String path)
Returns the
File at the given path, returning null if not found. |
Item |
AbstractCachedContentStoreAdapter.findItem(Context context,
CachingOptions cachingOptions,
String path,
boolean withDescriptor) |
List<Item> |
AbstractCachedContentStoreAdapter.findItems(Context context,
CachingOptions cachingOptions,
String path,
boolean withDescriptor) |
protected abstract List<File> |
AbstractFileBasedContentStoreAdapter.getChildren(Context context,
File dir)
Returns the list of children of the given directory.
|
| Modifier and Type | Class and Description |
|---|---|
class |
FileSystemContext
Extension of context that adds properties used by the
FileSystemContentStoreAdapter. |
| Modifier and Type | Method and Description |
|---|---|
Context |
FileSystemContentStoreAdapter.createContext(String id,
String storeServerUrl,
String username,
String password,
String rootFolderPath,
boolean mergingOn,
boolean cacheOn,
int maxAllowedItemsInCache,
boolean ignoreHiddenFiles) |
| Modifier and Type | Method and Description |
|---|---|
void |
FileSystemContentStoreAdapter.destroyContext(Context context) |
protected File |
FileSystemContentStoreAdapter.findFile(Context context,
String path) |
protected List<File> |
FileSystemContentStoreAdapter.getChildren(Context context,
File dir) |
boolean |
FileSystemContentStoreAdapter.validate(Context context) |
| Modifier and Type | Method and Description |
|---|---|
String |
UrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
UrlTransformationEngine.transformUrl(Context context,
CachingOptions cachingOptions,
String transformerName,
String url) |
String |
UrlTransformationEngine.transformUrl(Context context,
String transformerName,
String url) |
| Modifier and Type | Method and Description |
|---|---|
protected String |
UrlTransformationEngineImpl.doTransformUrl(Context context,
CachingOptions cachingOptions,
String transformerName,
String url) |
protected abstract String |
AbstractCachedUrlTransformationEngine.doTransformUrl(Context context,
CachingOptions cachingOptions,
String transformerName,
String url) |
protected String |
ShortToLongUrlTransformer.getLongName(Context context,
CachingOptions cachingOptions,
String folderPath,
String shortName) |
protected String |
ShortToLongUrlTransformer.getLongUrl(Context context,
CachingOptions cachingOptions,
String shortUrl,
boolean useShortNameIfLongNameNotFound) |
String |
ReplacePatternAllUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
RemovePrefixAndSuffixUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
ExtractRequestAttributesUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
AddServletPathUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
AddContextPathUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
ReplaceSubstringUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
ShortToLongUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
AddSchemeAndDomainAndServerPortUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
AddPrefixAndSuffixUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
UrlTransformerPipeline.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
AddDebugParamUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
ContentBundleShortToLongUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
LongToShortUrlTransformer.transformUrl(Context context,
CachingOptions cachingOptions,
String url) |
String |
AbstractCachedUrlTransformationEngine.transformUrl(Context context,
CachingOptions cachingOptions,
String transformerName,
String url) |
String |
AbstractCachedUrlTransformationEngine.transformUrl(Context context,
String transformerName,
String url) |
| Modifier and Type | Method and Description |
|---|---|
<T> T |
CacheTemplate.getObject(Context context,
CachingOptions cachingOptions,
org.craftercms.commons.lang.Callback<T> callback,
Object... keyElements)
Executes the template, using the specified callback to load the object to cache, if it's not already in the
cache.
|
<T> T |
CacheTemplate.getObject(Context context,
org.craftercms.commons.lang.Callback<T> callback,
Object... keyElements)
Executes the template, using the specified callback to load the object to cache, if it's not already in the
cache.
|
| Modifier and Type | Method and Description |
|---|---|
protected <T> T |
DefaultCacheTemplate.doGet(Context context,
org.craftercms.commons.lang.Callback<T> callback,
Object key) |
protected <T> T |
DefaultCacheTemplate.doPut(Context context,
CachingOptions cachingOptions,
org.craftercms.commons.lang.Callback<T> callback,
Object key,
T obj) |
<T> T |
DefaultCacheTemplate.getObject(Context context,
CachingOptions cachingOptions,
org.craftercms.commons.lang.Callback<T> callback,
Object... keyElements) |
<T> T |
DefaultCacheTemplate.getObject(Context context,
org.craftercms.commons.lang.Callback<T> callback,
Object... keyElements) |
protected void |
DefaultCacheTemplate.logGetFailure(Context context,
org.craftercms.commons.lang.Callback<?> callback,
Object key,
Exception e) |
protected void |
DefaultCacheTemplate.logPutFailure(Context context,
org.craftercms.commons.lang.Callback<?> callback,
Object key,
Object obj,
Exception e) |
| Modifier and Type | Method and Description |
|---|---|
List<MergeableDescriptor> |
DescriptorMergeStrategy.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.
|
List<MergeableDescriptor> |
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.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
InheritVersionsMergeStrategy.addInheritedDescriptorsInFolder(Context context,
CachingOptions cachingOptions,
List<MergeableDescriptor> inheritedDescriptors,
String folder,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom) |
protected abstract void |
AbstractInheritFromHierarchyMergeStrategy.addInheritedDescriptorsInFolder(Context context,
CachingOptions cachingOptions,
List<MergeableDescriptor> inheritedDescriptors,
String folder,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom) |
protected void |
InheritLevelsMergeStrategy.addInheritedDescriptorsInFolder(Context context,
CachingOptions cachingOptions,
List<MergeableDescriptor> inheritedDescriptors,
String folder,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom) |
protected void |
CompositeInheritFromHierarchyMergeStrategy.addInheritedDescriptorsInFolder(Context context,
CachingOptions cachingOptions,
List<MergeableDescriptor> inheritedDescriptors,
String folder,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom) |
protected org.dom4j.Document |
ContentBundleMergeStrategy.getDescriptorDom(Context context,
CachingOptions cachingOptions,
String url) |
protected org.dom4j.Document |
ExplicitParentMergeStrategy.getDescriptorDom(Context context,
CachingOptions cachingOptions,
String url) |
List<MergeableDescriptor> |
SingleFileMergeStrategy.getDescriptors(Context context,
CachingOptions cachingOptions,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom) |
List<MergeableDescriptor> |
AbstractInheritFromHierarchyMergeStrategy.getDescriptors(Context context,
CachingOptions cachingOptions,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom) |
List<MergeableDescriptor> |
ContentBundleMergeStrategy.getDescriptors(Context context,
CachingOptions cachingOptions,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom) |
List<MergeableDescriptor> |
ExplicitParentMergeStrategy.getDescriptors(Context context,
CachingOptions cachingOptions,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom) |
List<MergeableDescriptor> |
SingleFileMergeStrategy.getDescriptors(Context context,
CachingOptions cachingOptions,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom,
boolean mainDescriptorOptional) |
List<MergeableDescriptor> |
AbstractInheritFromHierarchyMergeStrategy.getDescriptors(Context context,
CachingOptions cachingOptions,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom,
boolean mainDescriptorOptional) |
List<MergeableDescriptor> |
ContentBundleMergeStrategy.getDescriptors(Context context,
CachingOptions cachingOptions,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom,
boolean mainDescriptorOptional) |
List<MergeableDescriptor> |
ExplicitParentMergeStrategy.getDescriptors(Context context,
CachingOptions cachingOptions,
String mainDescriptorUrl,
org.dom4j.Document mainDescriptorDom,
boolean mainDescriptorOptional) |
Copyright © 2018 CrafterCMS. All rights reserved.