Class PortletApplicationContextImpl
- java.lang.Object
-
- org.gatein.pc.portlet.impl.deployment.PortletApplicationContextImpl
-
- All Implemented Interfaces:
PortletApplicationContext
public class PortletApplicationContextImpl extends Object implements PortletApplicationContext
- Version:
- $Revision: 630 $
- Author:
- Julien Viet
-
-
Constructor Summary
Constructors Constructor Description PortletApplicationContextImpl(javax.servlet.ServletContext webApp)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassLoadergetClassLoader()Return the classloader.StringgetContextPath()Returns the context path of the web applicationjavax.servlet.ServletContextgetServletContext()Return the servlet context.voidmanagedStart()Attempt to start the portlet application.voidmanagedStop()Stop the portlet application.
-
-
-
Method Detail
-
getServletContext
public javax.servlet.ServletContext getServletContext()
Description copied from interface:PortletApplicationContextReturn the servlet context.- Specified by:
getServletContextin interfacePortletApplicationContext- Returns:
- the servlet context
-
getContextPath
public String getContextPath()
Description copied from interface:PortletApplicationContextReturns the context path of the web application- Specified by:
getContextPathin interfacePortletApplicationContext- Returns:
- the context path
-
getClassLoader
public ClassLoader getClassLoader()
Description copied from interface:PortletApplicationContextReturn the classloader.- Specified by:
getClassLoaderin interfacePortletApplicationContext- Returns:
- the classloader
-
managedStart
public void managedStart()
Description copied from interface:PortletApplicationContextAttempt to start the portlet application.- Specified by:
managedStartin interfacePortletApplicationContext
-
managedStop
public void managedStop()
Description copied from interface:PortletApplicationContextStop the portlet application.- Specified by:
managedStopin interfacePortletApplicationContext
-
-