|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface JeeConfig
Because sometimes you don't care about the difference between a
servlet and a filter. Why isn't there a common interface for
FilterConfig
and ServletConfig
already? Sheesh.
Anyway, this also adds the ability to fake everything if you don't have
either a FilterConfig or a ServletConfig handy. Just implement it and
override the methods that return things you care about. Oh, and if you don't
have any init-params at all, just use JeeContextConfig
as
ServletContext
is the only really essential thing for creating a
VelocityView
.
Method Summary | |
---|---|
String |
findInitParameter(String key)
Looks for the specified init-param in the servlet/filter config (i.e. |
String |
getInitParameter(String name)
Returns an initialization parameter. |
Enumeration |
getInitParameterNames()
Returns all the parameter names. |
String |
getName()
Returns the name of the servlet (or filter) being used. |
javax.servlet.ServletContext |
getServletContext()
Returns the servlet context. |
Method Detail |
---|
String getInitParameter(String name)
name
- The name of the initialization parameter.
String findInitParameter(String key)
getInitParameter(java.lang.String)
). If no such init-param is
found there, it checks the ServletContext
's init-params
for the specified parameter.
key
- The name of the initialization parameter.
Enumeration getInitParameterNames()
String getName()
javax.servlet.ServletContext getServletContext()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |