com.ca.jcs.cfg
Class HttpProxyServer
java.lang.Object
com.ca.jcs.cfg.HttpProxyServer
public class HttpProxyServer
- extends Object
Configuration information for a single HTTP proxy server.
The instance of this configuration is normally defined in server_jcs.xml but
the actual values are set by the installer in the override properties file,
server_jcs.properties.
Example:
httpProxyPrimary.host=proxy.ca.com
httpProxyPrimary.port=8080
- Author:
- fittr01
HttpProxyServer
public HttpProxyServer()
getHost
public String getHost()
- Returns:
- Host name or IP address of HTTP proxy server
setHost
public void setHost(String host)
- Parameters:
host - the host to set
getPort
public Integer getPort()
- Returns:
- Port number of HTTP proxy server, as an Integer
getPortNumber
public int getPortNumber()
- Returns:
- Port number of HTTP proxy server, as an int
setPort
public void setPort(Integer port)
- Parameters:
port - the port to set
getDomain
public String getDomain()
- Returns:
- Domain or realm of HTTP proxy server
setDomain
public void setDomain(String domain)
- Parameters:
domain - the domain to set
getUsername
public String getUsername()
- Returns:
- Username to use for authentication to the HTTP proxy server
setUsername
public void setUsername(String username)
- Parameters:
username - the username to set
getPassword
public String getPassword()
- Returns:
- Password to use for authentication to the HTTP proxy server
setPassword
public void setPassword(String password)
- Parameters:
password - the password to set
getPasswordDecrypted
public String getPasswordDecrypted()
- Returns:
- the passwordDecrypted
setPasswordDecrypted
public void setPasswordDecrypted(String passwordDecrypted)
- Parameters:
passwordDecrypted - the passwordDecrypted to set
toString
public String toString()
- Overrides:
toString in class Object
Created 2011-07-14 13:27 EST