Interface IFilterMapping
-
public interface IFilterMapping
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.servlet.DispatcherType[]getDispatchMode()IFilterConfiggetFilterConfig()Returns the filterConfig.intgetMappingType()IServletConfiggetServletConfig()java.lang.StringgetUrlPattern()Returns the urlPattern.voidsetDispatchMode(javax.servlet.DispatcherType[] dispatchMode)Sets the dispatchMode.voidsetFilterConfig(IFilterConfig filterConfig)Sets the filterConfig.voidsetUrlPattern(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
-
-