Interface IFilterMapping
-
public interface IFilterMapping
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.servlet.DispatcherType[]
getDispatchMode()
IFilterConfig
getFilterConfig()
Returns the filterConfig.int
getMappingType()
IServletConfig
getServletConfig()
java.lang.String
getUrlPattern()
Returns the urlPattern.void
setDispatchMode(javax.servlet.DispatcherType[] dispatchMode)
Sets the dispatchMode.void
setFilterConfig(IFilterConfig filterConfig)
Sets the filterConfig.void
setUrlPattern(java.lang.String filterURI)
Sets the urlPattern.
-
-
-
Method Detail
-
getMappingType
int getMappingType()
-
getFilterConfig
IFilterConfig getFilterConfig()
Returns the filterConfig.- Returns:
- FilterConfig
-
getUrlPattern
java.lang.String getUrlPattern()
Returns the urlPattern.- Returns:
- String
-
setFilterConfig
void setFilterConfig(IFilterConfig filterConfig)
Sets the filterConfig.- Parameters:
filterConfig
- The filterConfig to set
-
setUrlPattern
void setUrlPattern(java.lang.String filterURI)
Sets the urlPattern.- Parameters:
urlPattern
- The urlPattern to set
-
getServletConfig
IServletConfig getServletConfig()
-
getDispatchMode
javax.servlet.DispatcherType[] getDispatchMode()
- Returns:
- DispatcherType[]
-
setDispatchMode
void setDispatchMode(javax.servlet.DispatcherType[] dispatchMode)
Sets the dispatchMode.- Parameters:
dispatchMode
- The dispatchMode to set
-
-