View | Details | Raw Unified | Return to bug 55035
Collapse All | Expand All

(-)file_not_specified_in_diff (-4 / +17 lines)
Line 41 Link Here
41
public class DeployTask extends AbstractCatalinaCommandTask {
41
public class DeployTask extends AbstractCatalinaTask {
42
--
Line 77 Link Here
77
     * The context path of the web application we are managing.
78
     */
79
    protected String path = null;
80
81
    public String getPath() {
82
        return (this.path);
83
    }
84
85
    public void setPath(String path) {
86
        this.path = path;
87
    }
88
89
90
    /**
Line 175 Link Here
175
        StringBuilder sb = createQueryString("/deploy");
189
        StringBuilder sb = new StringBuilder("/deploy?path=");
176
--
Line 177 Link Here
191
            sb.append(URLEncoder.encode(this.path, getCharset()));

Return to bug 55035