| |
|
| java.lang.Object org.netbeans.modules.visualweb.jsfsupport.container.RaveServletConfig
RaveServletConfig | public class RaveServletConfig implements ServletConfig(Code) | | Provides a ServletConfig (v 2.3) object for design-time use
author: Robert Brewin version: 1.0 |
RaveServletConfig | public RaveServletConfig(ServletContext context)(Code) | | Public constructor for the RaveServletConfig class, initialized
with a ServletContext object
Parameters: context - The ServletContext object used to initialize this configuration object |
addInitParameter | public void addInitParameter(String name, String value)(Code) | | Add an initialization parameter
Parameters: name - The name associated with this parameter Parameters: value - The value for this parameter |
getInitParameter | public String getInitParameter(String name)(Code) | | Get the initialization parameter
Parameters: name - The name of the parameter to return the parameter value |
getInitParameterNames | public Enumeration getInitParameterNames()(Code) | | Get the parameter names
An Enumeration of the parameter names |
getServletContext | public ServletContext getServletContext()(Code) | | Get the servlet context for this configuration
the ServletContext for this configuration |
getServletName | public String getServletName()(Code) | | Get the Servlet name
A Stringcontaining the servlet name |
setServletContext | public void setServletContext(ServletContext context)(Code) | | Set the servlet context
Parameters: context - The servlet context |
|
|
|