declarations in the deployment descriptor.
getServletName
public java.lang.String getServletName()
- Returns the name of the servlet that this mapping applies to.
setServletName
public void setServletName(java.lang.String servletName)
- Sets the name of the servlet that this mapping applies to.
getUrlPattern
public java.lang.String getUrlPattern()
- Returns:
- The value of the UrlPattern attribute
The url-pattern element contains the url pattern of the mapping. Must follow
the rules specified in Section 10 of the Servlet API Specification.
setUrlPattern
public void setUrlPattern(java.lang.String value)
- Parameters:
value
- The new value of the UrlPattern attribute
getDispatcherType
public EList getDispatcherType()
- Returns the value of the 'Dispatcher Type' attribute list.
The list contents are of type
DispatcherType
.
The literals are from the enumeration DispatcherType
.
If the meaning of the 'Dispatcher Type' attribute list isn't clear,
there really should be more of a description here...
- Returns:
- the value of the 'Dispatcher Type' attribute list.
- See Also:
DispatcherType
,
WebapplicationPackage.getFilterMapping_DispatcherType()
getFilter
public Filter getFilter()
- Returns:
- The Filter reference
The filter being mapped
setFilter
public void setFilter(Filter value)
getServlet
public Servlet getServlet()
- Returns:
- The Servlet reference
An optional servlet that is mapped by a filter mapping. servletName is used to
resolve the servlet reference.
setServlet
public void setServlet(Servlet value)