JSPTemplates

org.tp23.jsp
Interface ObjectConfig

All Known Implementing Classes:
PropertiesObjectConfig, NullObjectConfig

public interface ObjectConfig

Interface defining configuration for a JSP that lives in MyJasper.

Author:
Paul Hinds

Method Summary
 java.lang.String getInitParameter(java.lang.String name)
          Gets the named initParameter.
 java.util.Enumeration getInitParameterNames()
          Gets the init Parameter Names
 java.lang.String getJspName()
          Gets the jsp Name
 ObjectContainerContext getObjectContainerContext()
          Gets the ObjectContainerContext of the server running this JSP
 

Method Detail

getInitParameter

public java.lang.String getInitParameter(java.lang.String name)
Gets the named initParameter. These are set in a .propeties file that is stored next to the jsp file with the same name (but a different extension)
Parameters:
name - Parameter name
Returns:
The initParameter value

getInitParameterNames

public java.util.Enumeration getInitParameterNames()
Gets the init Parameter Names
Returns:
The init Parameter Names as an Enumeration

getObjectContainerContext

public ObjectContainerContext getObjectContainerContext()
Gets the ObjectContainerContext of the server running this JSP
Returns:
The ObjectContainerContext

getJspName

public java.lang.String getJspName()
Gets the jsp Name
Returns:
The jspName value

JSPTemplates