org.apache.catalina.deploy
Class FilterMap
java.lang.Object
org.apache.catalina.deploy.FilterMap
- All Implemented Interfaces:
- Serializable
public class FilterMap
- extends Object
- implements Serializable
Representation of a filter mapping for a web application, as represented
in a <filter-mapping>
element in the deployment
descriptor. Each filter mapping must contain a filter name plus either
a URL pattern or a servlet name.
- Version:
- $Id: FilterMap.java 1004006 2010-10-03 17:27:42Z markt $
- Author:
- Craig R. McClanahan
- See Also:
- Serialized Form
Field Summary |
static int |
ASYNC
|
static int |
ERROR
The name of this filter to be executed when this mapping matches
a particular request. |
static int |
FORWARD
|
static int |
INCLUDE
|
static int |
REQUEST
|
ERROR
public static final int ERROR
- The name of this filter to be executed when this mapping matches
a particular request.
- See Also:
- Constant Field Values
FORWARD
public static final int FORWARD
- See Also:
- Constant Field Values
INCLUDE
public static final int INCLUDE
- See Also:
- Constant Field Values
REQUEST
public static final int REQUEST
- See Also:
- Constant Field Values
ASYNC
public static final int ASYNC
- See Also:
- Constant Field Values
FilterMap
public FilterMap()
getFilterName
public String getFilterName()
setFilterName
public void setFilterName(String filterName)
getServletNames
public String[] getServletNames()
addServletName
public void addServletName(String servletName)
getMatchAllUrlPatterns
public boolean getMatchAllUrlPatterns()
getMatchAllServletNames
public boolean getMatchAllServletNames()
getURLPatterns
public String[] getURLPatterns()
addURLPattern
public void addURLPattern(String urlPattern)
setDispatcher
public void setDispatcher(String dispatcherString)
- This method will be used to set the current state of the FilterMap
representing the state of when filters should be applied.
getDispatcherMapping
public int getDispatcherMapping()
getDispatcherNames
public String[] getDispatcherNames()
toString
public String toString()
- Render a String representation of this object.
- Overrides:
toString
in class Object
Copyright © 2000-2010 Apache Software Foundation. All Rights Reserved.