--- file_not_specified_in_diff +++ file_not_specified_in_diff @@ -41,1 +41,1 @@ -public class DeployTask extends AbstractCatalinaCommandTask { --- +public class DeployTask extends AbstractCatalinaTask { @@ -77,0 +77,14 @@ + * The context path of the web application we are managing. + */ + protected String path = null; + + public String getPath() { + return (this.path); + } + + public void setPath(String path) { + this.path = path; + } + + + /** @@ -175,1 +189,1 @@ - StringBuilder sb = createQueryString("/deploy"); --- + StringBuilder sb = new StringBuilder("/deploy?path="); @@ -177,0 +191,1 @@ + sb.append(URLEncoder.encode(this.path, getCharset()));