Package | Description |
---|---|
org.hippoecm.hst.component.support | |
org.hippoecm.hst.component.support.bean | |
org.hippoecm.hst.component.support.forms | |
org.hippoecm.hst.component.support.spring | |
org.hippoecm.hst.core.component |
The org.hippoecm.hst.core.component package defines the API for the HST Core Component
|
org.hippoecm.hst.core.container |
The org.hippoecm.hst.core.container package defines the API for the HST Core Container
|
org.hippoecm.hst.mock.core.container | |
org.hippoecm.hst.util |
The org.hippoecm.hst.content.util package defines the API for the HST Util
|
Modifier and Type | Method and Description |
---|---|
void |
SimpleDispatcherHstComponent.doAction(HstRequest request,
HstResponse response) |
void |
SimpleDispatcherHstComponent.doBeforeRender(HstRequest request,
HstResponse response) |
void |
SimpleDispatcherHstComponent.doBeforeServeResource(HstRequest request,
HstResponse response) |
protected void |
SimpleDispatcherHstComponent.doDispatch(String dispatchPath,
HstRequest request,
HstResponse response) |
void |
SimpleDispatcherHstComponent.init(javax.servlet.ServletContext servletContext,
ComponentConfiguration componentConfig) |
Modifier and Type | Method and Description |
---|---|
ObjectConverter |
BaseHstComponent.getObjectConverter()
Deprecated.
since 7.9.0, use
ContentBeansTool.getObjectConverter() instead.
ContentBeansTool can be accessed through HstRequestContext.getContentBeansTool() and
the HstReqeustContext can be fetched from the HstRequest or through RequestContextProvider.get(). |
void |
BaseHstComponent.init(javax.servlet.ServletContext servletContext,
ComponentConfiguration componentConfig) |
Modifier and Type | Method and Description |
---|---|
static void |
FormUtils.persistFormMap(HstRequest request,
HstResponse response,
FormMap formMap,
StoreFormResult storeFormResult) |
static void |
FormUtils.persistFormMap(String formDataNodePath,
String formId,
HstRequest request,
HstResponse response,
FormMap formMap,
StoreFormResult storeFormResult,
boolean includeRenderParameter)
Facility to temporarily store submitted form data which needs to be accessed in the rendering phase again.
|
Modifier and Type | Method and Description |
---|---|
void |
SpringBridgeHstComponent.destroy() |
void |
SpringBridgeHstComponent.doAction(HstRequest request,
HstResponse response) |
void |
SpringBridgeHstComponent.doBeforeRender(HstRequest request,
HstResponse response) |
void |
SpringBridgeHstComponent.doBeforeServeResource(HstRequest request,
HstResponse response) |
protected HstComponent |
SpringBridgeHstComponent.getDelegatedBean(HstRequest request) |
void |
SpringBridgeHstComponent.init(javax.servlet.ServletContext servletContext,
ComponentConfiguration componentConfig) |
Modifier and Type | Class and Description |
---|---|
class |
HstComponentFatalException
The
HstComponentFatalException can be thrown to break out of the HST2 request handling. |
Modifier and Type | Method and Description |
---|---|
void |
GenericHstComponent.destroy() |
void |
HstComponent.destroy()
Allows the component to destroy itself
|
void |
GenericHstComponent.doAction(HstRequest request,
HstResponse response) |
void |
HstComponent.doAction(HstRequest request,
HstResponse response)
Allows the component to process actions
|
void |
GenericHstComponent.doBeforeRender(HstRequest request,
HstResponse response) |
void |
HstComponent.doBeforeRender(HstRequest request,
HstResponse response)
Allows the component to do some business logic processing before rendering
|
void |
GenericHstComponent.doBeforeServeResource(HstRequest request,
HstResponse response) |
void |
HstComponent.doBeforeServeResource(HstRequest request,
HstResponse response)
Allows the component to do some business logic processing before serving resource
|
void |
GenericHstComponent.init(javax.servlet.ServletContext servletContext,
ComponentConfiguration componentConfig) |
void |
HstComponent.init(javax.servlet.ServletContext servletContext,
ComponentConfiguration componentConfig)
Allows the component to initialize itself
|
Modifier and Type | Method and Description |
---|---|
Collection<HstComponentException> |
PageErrors.getAllComponentExceptions()
Returns all component exceptions.
|
List<HstComponentException> |
HstComponentWindow.getComponentExceptions()
The component exceptions during initialization or runtime.
|
Collection<HstComponentException> |
PageErrors.getComponentExceptions(HstComponentInfo componentInfo)
Returns collection of
HstComponentException caused by the specific component. |
Modifier and Type | Method and Description |
---|---|
void |
HstComponentWindow.addComponentExcpetion(HstComponentException e)
Adds a component exceptions during initialization or runtime.
|
Modifier and Type | Method and Description |
---|---|
HstComponentWindow |
HstComponentWindowFactory.create(HstContainerConfig requestContainerConfig,
HstRequestContext requestContext,
HstComponentConfiguration compConfig,
HstComponentFactory compFactory)
Creates a
HstComponentWindow instance. |
HstComponentWindow |
HstComponentWindowFactory.create(HstContainerConfig requestContainerConfig,
HstRequestContext requestContext,
HstComponentConfiguration compConfig,
HstComponentFactory compFactory,
HstComponentWindow parentWindow)
Creates a
HstComponentWindow instance as a child window of the parentWindow. |
HstComponentWindow |
HstComponentWindowFilter.doFilter(HstRequestContext requestContext,
HstComponentConfiguration compConfig,
HstComponentWindow window) |
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.
|
<T> T |
HstComponentFactory.getObjectInstance(HstContainerConfig requestContainerConfig,
String className)
Returns arbitrary object instance from the HstComponent context.
|
Modifier and Type | Method and Description |
---|---|
List<HstComponentException> |
MockHstComponentWindow.getComponentExceptions() |
Modifier and Type | Method and Description |
---|---|
void |
MockHstComponentWindow.addComponentExcpetion(HstComponentException e) |
Modifier and Type | Method and Description |
---|---|
static Collection<HstComponentException> |
PageErrorUtils.getExceptionsByCauseType(PageErrors pageErrors,
Class<? extends Throwable> causeType)
Returns all exceptions which have the
causeType . |
static Collection<HstComponentException> |
PageErrorUtils.getExceptionsByCauseType(PageErrors pageErrors,
HstComponentInfo componentInfo,
Class<? extends Throwable> causeType)
Returns all exceptions which have the
causeType and generated by a component of componentInfo . |
static Collection<HstComponentException> |
PageErrorUtils.getExceptionsByComponentClassName(PageErrors pageErrors,
String className)
Returns exceptions generated by a component specified by the class name.
|
static Collection<HstComponentException> |
PageErrorUtils.getExceptionsByComponentId(PageErrors pageErrors,
String id)
Returns exceptions generated by a component specified by the id.
|
static Collection<HstComponentException> |
PageErrorUtils.getExceptionsByComponentName(PageErrors pageErrors,
String name)
Returns exceptions generated by a component specified by the name.
|
Modifier and Type | Method and Description |
---|---|
static javax.jcr.Session |
ContentBeanUtils.getDisposableSession(HstRequestContext requestContext,
String sessionIdentifier)
This method tries to get a
Session from a disposable pool which is identified by
disposablePoolIdentifier or a Session from a security delegate
If sessionIdentifier is empty or null an HstComponentException will be thrown. |
static HippoFacetNavigationBean |
ContentBeanUtils.getFacetNavigationBean(HstQuery query)
Same as
ContentBeanUtils.getFacetNavigationBean(String) only now instead of a String query we
pass in a HstQuery |
static HippoFacetNavigationBean |
ContentBeanUtils.getFacetNavigationBean(HstQuery query,
String relPath)
Same as
ContentBeanUtils.getFacetNavigationBean(HstQuery) only now instead of having the faceted navigation
node from the ResolvedSiteMapItem we add a relPath where it should be found |
static HippoFacetNavigationBean |
ContentBeanUtils.getFacetNavigationBean(HstQuery query,
String absBasePath,
String relPath)
Same as
ContentBeanUtils.getFacetNavigationBean(HstQuery) only now instead of having the faceted navigation
node from the ResolvedSiteMapItem we add absBasePath and relPath where it should be found |
static HippoFacetNavigationBean |
ContentBeanUtils.getFacetNavigationBean(String query) |
static HippoFacetNavigationBean |
ContentBeanUtils.getFacetNavigationBean(String relPath,
String query) |
static HippoFacetNavigationBean |
ContentBeanUtils.getFacetNavigationBean(String absBasePath,
String relPath,
String query)
Returns the
HippoFacetNavigationBean for absBasePath , relPath and
accounted for the free text query . |
static javax.jcr.Session |
ContentBeanUtils.getPreviewCmsQuerySession(HstRequestContext requestContext,
String sessionIdentifier) |
Copyright © 2008–2016 Hippo B.V. (http://www.onehippo.com). All rights reserved.