|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.tools.ant.ProjectComponent | +--org.apache.tools.ant.Task | +--org.apache.tools.ant.taskdefs.optional.net.SetProxy
Sets Java's web proxy properties, so that tasks and code run in the same JVM can have through-the-firewall access to remote web sites, and remote ftp sites. You can nominate an http and ftp proxy, or a socks server, reset the server settings, or do nothing at all.
Examples
<setproxy/>do nothing
<setproxy proxyhost="firewall"/>set the proxy to firewall:80
<setproxy proxyhost="firewall" proxyport="81"/>set the proxy to firewall:81
<setproxy proxyhost=""/>stop using the http proxy; don't change the socks settings
<setproxy socksproxyhost="socksy"/>use socks via socksy:1080
<setproxy socksproxyhost=""/>stop using the socks server.
You can set a username and password for http with the proxyHost and proxyPassword attributes. On Java1.4 and above these can also be used against SOCKS5 servers.
Field Summary | |
protected java.lang.String |
proxyHost
proxy details |
protected int |
proxyPort
name of proxy port |
Fields inherited from class org.apache.tools.ant.Task |
description, location, target, taskName, taskType, wrapper |
Fields inherited from class org.apache.tools.ant.ProjectComponent |
project |
Constructor Summary | |
SetProxy()
|
Method Summary | |
void |
applyWebProxySettings()
if the proxy port and host settings are not null, then the settings get applied these settings last beyond the life of the object and apply to all network connections Relevant docs: buglist #4183340 |
void |
execute()
Does the work. |
protected boolean |
legacyResetProxySettingsCall(boolean setProxy)
make a call to sun.net.www.http.HttpClient.resetProperties(); this is only needed for java 1.1; reflection is used to stop the compiler whining, and in case cleanroom JVMs dont have the class. |
void |
setNonProxyHosts(java.lang.String nonProxyHosts)
A list of hosts to bypass the proxy on. |
void |
setProxyHost(java.lang.String hostname)
the HTTP/ftp proxy host. |
void |
setProxyPassword(java.lang.String proxyPassword)
Set the password for the proxy. |
void |
setProxyPort(int port)
the HTTP/ftp proxy port number; default is 80 |
void |
setProxyUser(java.lang.String proxyUser)
set the proxy user. |
void |
setSocksProxyHost(java.lang.String host)
The name of a Socks server. |
void |
setSocksProxyPort(int port)
Set the ProxyPort for socks connections. |
Methods inherited from class org.apache.tools.ant.Task |
getDescription, getLocation, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, maybeConfigure, perform, reconfigure, setDescription, setLocation, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType |
Methods inherited from class org.apache.tools.ant.ProjectComponent |
getProject, setProject |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected java.lang.String proxyHost
protected int proxyPort
Constructor Detail |
public SetProxy()
Method Detail |
public void setProxyHost(java.lang.String hostname)
hostname
- the new proxy hostnamepublic void setProxyPort(int port)
port
- port number of the proxypublic void setSocksProxyHost(java.lang.String host)
host
- The new SocksProxyHost valuepublic void setSocksProxyPort(int port)
port
- The new SocksProxyPort valuepublic void setNonProxyHosts(java.lang.String nonProxyHosts)
nonProxyHosts
- lists of hosts to talk direct topublic void setProxyUser(java.lang.String proxyUser)
proxyUser
- usernamepublic void setProxyPassword(java.lang.String proxyPassword)
proxyPassword
- password to go with the usernamepublic void applyWebProxySettings()
protected boolean legacyResetProxySettingsCall(boolean setProxy)
public void execute() throws BuildException
execute
in class Task
BuildException
- thrown in unrecoverable error.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |