JSPTemplates

org.tp23.jasper.runtime
Class NullObjectConfig

java.lang.Object
  |
  +--org.tp23.jasper.runtime.NullObjectConfig
All Implemented Interfaces:
ObjectConfig

public class NullObjectConfig
extends java.lang.Object
implements ObjectConfig

This is a place holder for an ObjectConfig when there is no config file generated

Author:
Paul Hinds

Constructor Summary
NullObjectConfig(ObjectContainerContext containerContext)
          Constructor for the NullObjectConfig object
 
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 for this server
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NullObjectConfig

public NullObjectConfig(ObjectContainerContext containerContext)
Constructor for the NullObjectConfig object
Parameters:
containerContext - Description of Parameter
Method Detail

getInitParameter

public java.lang.String getInitParameter(java.lang.String name)
Description copied from interface: ObjectConfig
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)
Specified by:
getInitParameter in interface ObjectConfig
Returns:
null

getInitParameterNames

public java.util.Enumeration getInitParameterNames()
Description copied from interface: ObjectConfig
Gets the init Parameter Names
Specified by:
getInitParameterNames in interface ObjectConfig
Returns:
an empty enumeration

getObjectContainerContext

public ObjectContainerContext getObjectContainerContext()
Gets the ObjectContainerContext for this server
Specified by:
getObjectContainerContext in interface ObjectConfig
Returns:
The objectContainerContext

getJspName

public java.lang.String getJspName()
Description copied from interface: ObjectConfig
Gets the jsp Name
Specified by:
getJspName in interface ObjectConfig
Throws:
java.lang.UnsupportedOperationException -  

JSPTemplates