Uses of Interface
org.hippoecm.hst.configuration.hosting.Mount
-
Packages that use Mount Package Description org.hippoecm.hst.configuration.hosting The org.hippoecm.hst.core.hosting package defines the API for the HST Core Hostingorg.hippoecm.hst.configuration.internal org.hippoecm.hst.content.rewriter The org.hippoecm.hst.content.rewriter package defines the API for the HST Content Rewritersorg.hippoecm.hst.core.container The org.hippoecm.hst.core.container package defines the API for the HST Core Containerorg.hippoecm.hst.core.internal The org.hippoecm.hst.core.internal package defines INTERNAL USAGE ONLY API for the HST Containerorg.hippoecm.hst.core.linking The org.hippoecm.hst.core.linking package defines the API for the HST Core Linkingorg.hippoecm.hst.core.request The org.hippoecm.hst.core.request package defines the API for the HST Core Requestorg.hippoecm.hst.pagecomposer.jaxrs.api -
-
Uses of Mount in org.hippoecm.hst.configuration.hosting
Subinterfaces of Mount in org.hippoecm.hst.configuration.hosting Modifier and Type Interface Description interface
MutableMount
Mount extension that decouples channel info retrieval from the mount service construction.Methods in org.hippoecm.hst.configuration.hosting that return Mount Modifier and Type Method Description Mount
Mount. getChildMount(String name)
Mount
VirtualHosts. getMountByGroupAliasAndType(String hostGroupName, String alias, String type)
Mount
VirtualHosts. getMountByIdentifier(String uuid)
Mount
Mount. getParent()
Mount
PortMount. getRootMount()
Methods in org.hippoecm.hst.configuration.hosting that return types with arguments of type Mount Modifier and Type Method Description List<Mount>
Mount. getChildMounts()
List<Mount>
VirtualHosts. getMountsByHostGroup(String hostGroupName)
Methods in org.hippoecm.hst.configuration.hosting with parameters of type Mount Modifier and Type Method Description void
MutableVirtualHosts. addMount(Mount mount)
Add this mount for lookup throughVirtualHosts.getMountByGroupAliasAndType(String, String, String)
-
Uses of Mount in org.hippoecm.hst.configuration.internal
Subinterfaces of Mount in org.hippoecm.hst.configuration.internal Modifier and Type Interface Description interface
ContextualizableMount
-
Uses of Mount in org.hippoecm.hst.content.rewriter
Methods in org.hippoecm.hst.content.rewriter with parameters of type Mount Modifier and Type Method Description T
ContentRewriter. rewrite(T content, Node contentNode, HstRequestContext requestContext, Mount targetMount)
Rewrites the content of the content node. -
Uses of Mount in org.hippoecm.hst.core.container
Methods in org.hippoecm.hst.core.container with parameters of type Mount Modifier and Type Method Description HstContainerURL
HstContainerURLProvider. createURL(Mount mount, HstContainerURL baseURL, String path)
Creates anHstContainerURL
instance for a new pathInfo (without query parameters) based on theMount
and the baseHstContainerURL
instance.HstComponent
HstComponentFactory. getComponentInstance(HstContainerConfig requestContainerConfig, HstComponentConfiguration compConfig, Mount mount)
Returns the HstComponent instance from the HstComponent context.HstComponentMetadata
HstComponentFactory. getComponentMetadata(HstContainerConfig requestContainerConfig, HstComponentConfiguration compConfig, Mount mount)
Returns the metadata of the HstComponent from the HstComponent context. -
Uses of Mount in org.hippoecm.hst.core.internal
Methods in org.hippoecm.hst.core.internal that return Mount Modifier and Type Method Description Mount
PreviewDecorator. decorateMountAsPreview(Mount mount)
This method decorates themount
to a previewMount
.Methods in org.hippoecm.hst.core.internal with parameters of type Mount Modifier and Type Method Description Mount
PreviewDecorator. decorateMountAsPreview(Mount mount)
This method decorates themount
to a previewMount
.void
MutableResolvedMount. setMount(Mount mount)
-
Uses of Mount in org.hippoecm.hst.core.linking
Methods in org.hippoecm.hst.core.linking that return Mount Modifier and Type Method Description Mount
HstLink. getMount()
Mount
RewriteContext. getMount()
Methods in org.hippoecm.hst.core.linking with parameters of type Mount Modifier and Type Method Description HstLink
HstLinkCreator. create(String path, Mount mount)
Creates an HstLink for thepath
andmount
.HstLink
HstLinkCreator. create(String path, Mount mount, boolean containerResource)
Creates an HstLink for thepath
andmount
.HstLink
HstLinkCreator. create(Node node, Mount mount)
HstLink
HstLinkCreator. create(Node node, Mount mount, boolean crossMount)
HstLink
HstLinkCreator. create(Node node, Mount mount, HstSiteMapItem preferredItem, boolean fallback)
HstLink
HstLinkCreator. create(HstSiteMapItem toHstSiteMapItem, Mount mount)
Regardless the current context, create a HstLink to the HstSiteMapItem that you use as argument.List<HstLink>
HstLinkCreator. createAll(Node node, Mount mount, String hostGroupName, String type, boolean crossMount)
Rewrite a jcr Node to a List ofHstLink
sList<HstLink>
HstLinkCreator. createAllAvailableCanonicals(Node node, Mount mount, String type, String hostGroupName)
Expert: Creates aList
of all available canonical links fornode
, within the hostgrouphostGroupName
and where where the backingMount
of theHstLink
has at least onegetTypes()
equal totype
HstLink
HstLinkCreator. createByRefId(String siteMapItemRefId, Mount mount)
Regardless the current context, create a HstLink to theHstSiteMapItem
forMount
mount
that hasHstSiteMapItem.getRefId()
equal tositeMapItemRefId
.HstLink
HstLinkCreator. createPageNotFoundLink(Mount mount)
HstLink
LocationResolver. resolve(Node node, Mount mount, LocationMapTree locationMapTree)
Implementations should here do their logic, possibly linkrewriting.RewriteContext
RewriteContextResolver. resolve(Node node, Mount mount, HstRequestContext context, boolean canonical, boolean navigationStateful)
In general, the returnedRewriteContext.getPath()
with which the link creation is tried is justItem.getPath()
and the returnedRewriteContext.getMount()
just the mount for the currentHstRequestContext
, however, if required differently by an end project, it can be done by implementing a customRewriteContextResolver
and set this onHstLinkCreator
implementationString
ResourceContainer. resolveToPathInfo(Node resourceContainerNode, Node resourceNode, Mount mount)
Implementations should here do their logic, possibly linkrewriting.Constructors in org.hippoecm.hst.core.linking with parameters of type Mount Constructor Description RewriteContext(String path, Mount mount, boolean canonical, boolean navigationStateful)
-
Uses of Mount in org.hippoecm.hst.core.request
Methods in org.hippoecm.hst.core.request that return Mount Modifier and Type Method Description Mount
HstRequestContext. getMount(String alias)
a mount withgetAlias()
equal toalias
and at least one common type with the mount from the current request.Mount
HstRequestContext. getMount(String alias, String type)
Mount
ResolvedMount. getMount()
-
Uses of Mount in org.hippoecm.hst.pagecomposer.jaxrs.api
Methods in org.hippoecm.hst.pagecomposer.jaxrs.api that return Mount Modifier and Type Method Description Mount
ChannelEvent. getEditingMount()
Mount
PageActionContext. getEditingMount()
Mount
PageCopyContext. getTargetMount()
Methods in org.hippoecm.hst.pagecomposer.jaxrs.api that return types with arguments of type Mount Modifier and Type Method Description List<Mount>
BeforeChannelDeleteEvent. getMounts()
Return all mounts binding to the deleting channel.
-