Package org.hippoecm.hst.core.linking
Interface LocationMapTree
-
public interface LocationMapTree
Expert: TheLocationMapTree
is the container for a tree ofLocationMapTreeItem
's that are used for internal linkrewriting. Typically it is created by aggregating all the relative content paths from allSiteMapItem
's, and create a mapping from this. Thematch(String path, HstSite hstSite, boolean representsDocument)
tries to return the best matchingResolvedLocationMapTreeItem
possible for some absolute
path
. A path can only be rewritten if it belongs to the scope of theHstSite . If thepath
cannot be matched,null
will be returned from the match.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LocationMapTreeItem
getTreeItem(String name)
-
-
-
Method Detail
-
getTreeItem
LocationMapTreeItem getTreeItem(String name)
- Parameters:
name
- the name of the locationMapTreeItem- Returns:
- the locatioMapTreeItem with this
name
andnull
if none exists with this name
-
-