org.apache.maven.wagon.proxy
Class ProxyInfo
java.lang.Object
org.apache.maven.wagon.proxy.ProxyInfo
- Serializable
public class ProxyInfo
extends java.lang.Object
implements Serializable
Conatins set of properties used by Wagon
objects
while connection to the repository must go thru a proxy server.
$Id: ProxyInfo.java 162476 2005-04-19 02:49:45Z brett $
PROXY_HTTP
public static final String PROXY_HTTP
PROXY_SOCKS4
public static final String PROXY_SOCKS4
PROXY_SOCKS5
public static final String PROXY_SOCKS5
getHost
public String getHost()
Return proxy server host name.
getNonProxyHosts
public String getNonProxyHosts()
getNtlmDomain
public String getNtlmDomain()
getNtlmHost
public String getNtlmHost()
getPassword
public String getPassword()
Get user's password used to login to proxy server.
- user's password at proxy host
getPort
public int getPort()
Get the proxy port.
getType
public String getType()
Get the type of the proxy server.
- the type of the proxy server
getUserName
public String getUserName()
Get the proxy username.
- username for the proxy server
setHost
public void setHost(String host)
Set proxy host name.
host
- proxy server host name
setNonProxyHosts
public void setNonProxyHosts(String nonProxyHosts)
setNtlmDomain
public void setNtlmDomain(String ntlmDomain)
setNtlmHost
public void setNtlmHost(String ntlmHost)
setPassword
public void setPassword(String password)
Set the user's password for the proxy server.
password
- password to use to login to a proxy server
setPort
public void setPort(int port)
Set the proxy port.
setType
public void setType(String type)
type
- the type of the proxy server like SOCKSv4
setUserName
public void setUserName(String userName)
Set the proxy username.
userName
- username for the proxy server