org.apache.tapestry.services
Interface ApplicationGlobals

All Known Implementing Classes:
ApplicationGlobalsImpl

public interface ApplicationGlobals

A "global" holder for the servlet, servlet context and application specification.

Since:
3.1
Author:
Howard Lewis Ship

Method Summary
 javax.servlet.ServletContext getContext()
           
 javax.servlet.http.HttpServlet getServlet()
           
 javax.servlet.ServletConfig getServletConfig()
           
 java.lang.String getServletName()
           
 IApplicationSpecification getSpecification()
           
 void store(javax.servlet.http.HttpServlet servlet, IApplicationSpecification applicationSpecification)
          Invoked by the servlet at init(), after parsing the application specification.
 

Method Detail

store

public void store(javax.servlet.http.HttpServlet servlet,
                  IApplicationSpecification applicationSpecification)
Invoked by the servlet at init(), after parsing the application specification.


getServlet

public javax.servlet.http.HttpServlet getServlet()

getSpecification

public IApplicationSpecification getSpecification()

getContext

public javax.servlet.ServletContext getContext()

getServletName

public java.lang.String getServletName()

getServletConfig

public javax.servlet.ServletConfig getServletConfig()