ResourcesTaskpublic class ResourcesTask extends AbstractCatalinaTask Ant task that implements the /resources command, supported by
the Tomcat manager application. |
Fields Summary |
---|
protected String | typeThe fully qualified class name of the resource type being requested
(if any). |
Methods Summary |
---|
public void | execute()Execute the requested operation.
super.execute();
if (type != null) {
execute("/resources?type=" + type);
} else {
execute("/resources");
}
| public java.lang.String | getType()
return (this.type);
| public void | setType(java.lang.String type)
this.type = type;
|
|