org.apache.tapestry.web
Interface InitializationParameterHolder

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

public interface InitializationParameterHolder

Defines methods for accessing initialization parameters.

Since:
4.0
Author:
Howard M. Lewis Ship

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

Method Detail

getInitParameterNames

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

Returns:
List of String

getInitParameterValue

String getInitParameterValue(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


Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.