Methods Summary |
---|
public void | execute()Execute the requested operation.
super.execute();
if (path == null) {
throw new BuildException
("Must specify 'path' attribute");
}
if ((war == null) && (localWar == null) && (tag == null)) {
throw new BuildException
("Must specify either 'war', 'localWar', or 'tag' attribute");
}
// Building an input stream on the WAR to upload, if any
BufferedInputStream stream = null;
String contentType = null;
int contentLength = -1;
if (war != null) {
if (war.startsWith("file:")) {
try {
URL url = new URL(war);
URLConnection conn = url.openConnection();
contentLength = conn.getContentLength();
stream = new BufferedInputStream
(conn.getInputStream(), 1024);
} catch (IOException e) {
throw new BuildException(e);
}
} else {
try {
stream = new BufferedInputStream
(new FileInputStream(war), 1024);
} catch (IOException e) {
throw new BuildException(e);
}
}
contentType = "application/octet-stream";
}
// Building URL
StringBuffer sb = new StringBuffer("/deploy?path=");
sb.append(URLEncoder.encode(this.path));
if ((war == null) && (config != null)) {
sb.append("&config=");
sb.append(URLEncoder.encode(config));
}
if ((war == null) && (localWar != null)) {
sb.append("&war=");
sb.append(URLEncoder.encode(localWar));
}
if (update) {
sb.append("&update=true");
}
if (tag != null) {
sb.append("&tag=");
sb.append(URLEncoder.encode(tag));
}
execute(sb.toString(), stream, contentType, contentLength);
|
public java.lang.String | getConfig()
return (this.config);
|
public java.lang.String | getLocalWar()
return (this.localWar);
|
public java.lang.String | getPath()
return (this.path);
|
public java.lang.String | getTag()
return (this.tag);
|
public boolean | getUpdate()
return (this.update);
|
public java.lang.String | getWar()
return (this.war);
|
public void | setConfig(java.lang.String config)
this.config = config;
|
public void | setLocalWar(java.lang.String localWar)
this.localWar = localWar;
|
public void | setPath(java.lang.String path)
this.path = path;
|
public void | setTag(java.lang.String tag)
this.tag = tag;
|
public void | setUpdate(boolean update)
this.update = update;
|
public void | setWar(java.lang.String war)
this.war = war;
|