summaryrefslogtreecommitdiff
path: root/src/main/org/apache/tools/ant/taskdefs/optional/j2ee/HotDeploymentTool.java
diff options
context:
space:
mode:
authorPeter Reilly <peterreilly@apache.org>2006-11-16 23:39:55 +0000
committerPeter Reilly <peterreilly@apache.org>2006-11-16 23:39:55 +0000
commit36012960a97b8415ce6bc7e03a4cb64ffabc4d68 (patch)
treed51b7f56d3685cbeebd58c705bc8fd8203b39788 /src/main/org/apache/tools/ant/taskdefs/optional/j2ee/HotDeploymentTool.java
parent9dfd03133bf2e960f2eedf76f8292e1c7ba6bdfb (diff)
downloadant-36012960a97b8415ce6bc7e03a4cb64ffabc4d68.tar.gz
checkstyle
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@475986 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/main/org/apache/tools/ant/taskdefs/optional/j2ee/HotDeploymentTool.java')
-rw-r--r--src/main/org/apache/tools/ant/taskdefs/optional/j2ee/HotDeploymentTool.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/j2ee/HotDeploymentTool.java b/src/main/org/apache/tools/ant/taskdefs/optional/j2ee/HotDeploymentTool.java
index f67f33366..16c55d8e7 100644
--- a/src/main/org/apache/tools/ant/taskdefs/optional/j2ee/HotDeploymentTool.java
+++ b/src/main/org/apache/tools/ant/taskdefs/optional/j2ee/HotDeploymentTool.java
@@ -27,35 +27,35 @@ import org.apache.tools.ant.BuildException;
*/
public interface HotDeploymentTool {
/** The delete action String **/
- public static final String ACTION_DELETE = "delete";
+ String ACTION_DELETE = "delete";
/** The deploy action String **/
- public static final String ACTION_DEPLOY = "deploy";
+ String ACTION_DEPLOY = "deploy";
/** The list action String **/
- public static final String ACTION_LIST = "list";
+ String ACTION_LIST = "list";
/** The undeploy action String **/
- public static final String ACTION_UNDEPLOY = "undeploy";
+ String ACTION_UNDEPLOY = "undeploy";
/** The update action String **/
- public static final String ACTION_UPDATE = "update";
+ String ACTION_UPDATE = "update";
/**
* Validates the passed in attributes.
* @exception org.apache.tools.ant.BuildException if the attributes are invalid or incomplete.
*/
- public void validateAttributes() throws BuildException;
+ void validateAttributes() throws BuildException;
/**
* Perform the actual deployment.
* @exception org.apache.tools.ant.BuildException if the attributes are invalid or incomplete.
*/
- public void deploy() throws BuildException;
+ void deploy() throws BuildException;
/**
* Sets the parent task.
* @param task A ServerDeploy object representing the parent task.
*/
- public void setTask(ServerDeploy task);
+ void setTask(ServerDeploy task);
}