com.ca.jcs.cfg
Class HttpProxyServer

java.lang.Object
  extended by 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

Constructor Summary
HttpProxyServer()
           
 
Method Summary
 String getDomain()
           
 String getHost()
           
 String getPassword()
           
 String getPasswordDecrypted()
           
 Integer getPort()
           
 int getPortNumber()
           
 String getUsername()
           
 void setDomain(String domain)
           
 void setHost(String host)
           
 void setPassword(String password)
           
 void setPasswordDecrypted(String passwordDecrypted)
           
 void setPort(Integer port)
           
 void setUsername(String username)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

HttpProxyServer

public HttpProxyServer()
Method Detail

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