com.arsdigita.acs
Class FilterBase

java.lang.Object
  |
  +--com.arsdigita.acs.FilterBase
All Implemented Interfaces:
Filter
Direct Known Subclasses:
AdminFilter, Clickthrough, Download, UserGroupFilter

public abstract class FilterBase
extends Object
implements Filter

Filter base class

See Also:
Filter, RequestProcessor

Fields inherited from interface com.arsdigita.acs.Filter
FILTER_BREAK, FILTER_OK, FILTER_RETURN
 
Constructor Summary
FilterBase()
           
 
Method Summary
 String getPath()
          Gets the relative URL path for this Filter.
 int getPriority()
          Gets the priority level for this filter.
 void setPath(String s)
          Sets the relative URL path for this Filter.
 void setPriority(int i)
          Sets the priority level for this Filter.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.arsdigita.acs.Filter
filter
 

Constructor Detail

FilterBase

public FilterBase()
Method Detail

setPath

public void setPath(String s)
Description copied from interface: Filter
Sets the relative URL path for this Filter.
Specified by:
setPath in interface Filter
Following copied from interface: com.arsdigita.acs.Filter
Parameters:
s - The path to filter.

getPath

public String getPath()
Description copied from interface: Filter
Gets the relative URL path for this Filter.
Specified by:
getPath in interface Filter
Following copied from interface: com.arsdigita.acs.Filter
Returns:
The relative URL path for this Filter.

setPriority

public void setPriority(int i)
Description copied from interface: Filter
Sets the priority level for this Filter. Lower numbers are higher priority.
Specified by:
setPriority in interface Filter
Following copied from interface: com.arsdigita.acs.Filter
Parameters:
i - The priority level

getPriority

public int getPriority()
Description copied from interface: Filter
Gets the priority level for this filter.
Specified by:
getPriority in interface Filter
Following copied from interface: com.arsdigita.acs.Filter
Returns:
The priority.