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
Modifier and TypeMethodDescriptionReturns the classloader of the web application where the HstComponents are located.jakarta.servlet.ServletContext
Returns the servletContext of the web application where the HstComponents are located.
-
Method Details
-
getServletContext
jakarta.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.
-