Methods Summary |
---|
public java.util.Map | getClusterRefConfigMap()Calls Container.getContaineeMap(XTypes.CLUSTER_REF_CONFIG ).
|
public boolean | getHttpsRouting()Returns a boolean flag indicating how load-balancer will route HTTPS
requests. If true, then an HTTPS request to the load-balancer will
result in an HTTPS request to the server; if false, then HTTPS requests
to the load-balancer result in HTTP requests to the server.
|
public boolean | getMonitoringEnabled()Returns the boolean flag that determines whether monitoring is switched
on or not. Default is that monitoring is switched off (false)
|
public java.lang.String | getReloadPollIntervalInSeconds()Returns the maximum period, in seconds, that a change to the load
balancer configuration file takes before it is detected by
the load balancer and the file reloaded. A value of 0
indicates that reloading is disabled.
|
public java.lang.String | getResponseTimeoutInSeconds()Returns the period, in seconds, within which a server must return a response
or otherwise it will be considered unhealthy. Must be greater than or
equal to 0.
|
public boolean | getRouteCookieEnabled()Returns the boolean flag that determines whether a route cookie is or is
not enabled.
|
public java.util.Map | getServerRefConfigMap()Calls Container.getContaineeMap(XTypes.SERVER_REF_CONFIG ).
|
public void | setHttpsRouting(boolean value)Set the boolean flag indicating how load-balancer will route HTTPS
requests. If true, then an HTTPS request to the load-balancer will
result in an HTTPS request to the server; if false, then HTTPS requests
to the load-balancer result in HTTP requests to the server.
Default is to use HTTP (i.e. value of false);
|
public void | setMonitoringEnabled(boolean value)Set the boolean flag that determines whether monitoring is switched
on or not. Default is that monitoring is switched off (false)
|
public void | setReloadPollIntervalInSeconds(java.lang.String reloadPollIntervalInSeconds)Set the maximum period, in seconds, that a change to the load balancer
configuration file takes before it is detected by the load balancer and
the file reloaded. A value of 0 indicates that reloading is disabled.
Default period is 1 minute (60 seconds)
|
public void | setResponseTimeoutInSeconds(java.lang.String responseTimeoutInSeconds)Set the period, in seconds, within which a server must return a response or
otherwise it will be considered unhealthy. Default value is 60 seconds.
Must be greater than or equal to 0. A value of 0 effectively turns off
this check functionality, meaning the server will always be considered healthy.
|
public void | setRouteCookieEnabled(boolean value)Set the boolean flag that determines whether a route cookie is or is
not enabled. Default is enabled (true).
|