Package org.hippoecm.hst.core.container
Interface HstContainerConfig
-
public interface HstContainerConfig
The HstComponent container configuration. Because the container's request processor can be located in other web application and loaded by other class loader for centralized management reason, The HstComponent container servlet should pass an implementation of this interface to the request processor.- Version:
- $Id$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassLoader
getContextClassLoader()
Returns the classloader of the web application where the HstComponents are located.javax.servlet.ServletContext
getServletContext()
Returns the servletContext of the web application where the HstComponents are located.
-
-
-
Method Detail
-
getServletContext
javax.servlet.ServletContext getServletContext()
Returns the servletContext of the web application where the HstComponents are located.- Returns:
- the servletContext of the web application where the HstComponents are located.
-
getContextClassLoader
ClassLoader getContextClassLoader()
Returns the classloader of the web application where the HstComponents are located.- Returns:
- the classloader of the web application where the HstComponents are located.
-
-