org.apache.catalina.ant
public class: ResourcesTask [javadoc |
source]
java.lang.Object
org.apache.tools.ant.ProjectComponent
org.apache.tools.ant.Task
org.apache.catalina.ant.BaseRedirectorHelperTask
org.apache.catalina.ant.AbstractCatalinaTask
org.apache.catalina.ant.ResourcesTask
All Implemented Interfaces:
Cloneable
Ant task that implements the
/resources command, supported by
the Tomcat manager application.
- author:
Craig - R. McClanahan
- version:
$ - Revision: 467222 $ $Date: 2006-10-24 05:17:11 +0200 (mar., 24 oct. 2006) $
- since:
4.1 -
| Field Summary |
|---|
| protected String | type | The fully qualified class name of the resource type being requested
(if any). |
| Methods from org.apache.catalina.ant.AbstractCatalinaTask: |
|---|
|
execute, execute, execute, getCharset, getPassword, getUrl, getUsername, setCharset, setPassword, setUrl, setUsername |
| Methods from org.apache.catalina.ant.BaseRedirectorHelperTask: |
|---|
|
addConfiguredRedirector, closeRedirector, handleErrorFlush, handleErrorOutput, handleFlush, handleFlush, handleOutput, handleOutput, isFailOnError, openRedirector, setAlwaysLog, setAppend, setCreateEmptyFiles, setError, setErrorProperty, setFailonerror, setLogError, setOutput, setOutputproperty |
| Methods from org.apache.tools.ant.Task: |
|---|
|
bindToOwner, execute, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, init, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType |
| Method from org.apache.catalina.ant.ResourcesTask Detail: |
public void execute() throws BuildException {
super.execute();
if (type != null) {
execute("/resources?type=" + type);
} else {
execute("/resources");
}
}
Execute the requested operation. |
public String getType() {
return (this.type);
}
|
public void setType(String type) {
this.type = type;
}
|