org.apache.tapestry.web
Interface InitializationParameterHolder

All Known Subinterfaces:
WebActivator, WebContext
All Known Implementing Classes:
HttpServletWebActivator, ServletWebContext

public interface InitializationParameterHolder

Defines methods for accessing initialization parameters.

Since:
4.0
Author:
Howard M. Lewis Ship

Method Summary
 java.util.List getInitParameterNames()
          Returns a sorted list of the names of all initialization parameters (which may be the empty list).
 java.lang.String getInitParameterValue(java.lang.String name)
          Returns the value of the named parameter, or null if the reciever does not have such a parameter.
 

Method Detail

getInitParameterNames

java.util.List getInitParameterNames()
Returns a sorted list of the names of all initialization parameters (which may be the empty list).

Returns:
List of String

getInitParameterValue

java.lang.String getInitParameterValue(java.lang.String name)
Returns the value of the named parameter, or null if the reciever does not have such a parameter.

Parameters:
name - the name of the parameter to retrieve
Returns:
the corresponding value, or null