Fields Summary |
---|
private String | descriptionThe description of this filter. |
private String | displayNameThe display name of this filter. |
private String | filterClassThe fully qualified name of the Java class that implements this filter. |
private String | filterNameThe name of this filter, which must be unique among the filters
defined for a particular web application. |
private String | largeIconThe large icon associated with this filter. |
private Map | parametersThe set of initialization parameters for this filter, keyed by
parameter name. |
private String | smallIconThe small icon associated with this filter. |
Methods Summary |
---|
public void | addInitParameter(java.lang.String name, java.lang.String value)Add an initialization parameter to the set of parameters associated
with this filter.
parameters.put(name, value);
|
public java.lang.String | getDescription()
return (this.description);
|
public java.lang.String | getDisplayName()
return (this.displayName);
|
public java.lang.String | getFilterClass()
return (this.filterClass);
|
public java.lang.String | getFilterName()
return (this.filterName);
|
public java.lang.String | getLargeIcon()
return (this.largeIcon);
|
public java.util.Map | getParameterMap()
return (this.parameters);
|
public java.lang.String | getSmallIcon()
return (this.smallIcon);
|
public void | setDescription(java.lang.String description)
this.description = description;
|
public void | setDisplayName(java.lang.String displayName)
this.displayName = displayName;
|
public void | setFilterClass(java.lang.String filterClass)
this.filterClass = filterClass;
|
public void | setFilterName(java.lang.String filterName)
this.filterName = filterName;
|
public void | setLargeIcon(java.lang.String largeIcon)
this.largeIcon = largeIcon;
|
public void | setSmallIcon(java.lang.String smallIcon)
this.smallIcon = smallIcon;
|
public java.lang.String | toString()Render a String representation of this object.
StringBuffer sb = new StringBuffer("FilterDef[");
sb.append("filterName=");
sb.append(this.filterName);
sb.append(", filterClass=");
sb.append(this.filterClass);
sb.append("]");
return (sb.toString());
|