Util
Class Config

java.lang.Object
  |
  +--Util.Config

public final class Config
extends java.lang.Object

a static wrapper for global configuration options


Field Summary
static int max_connections
          The maximum number of concurrent client connection requests, to the server.
static int max_socket_retries
          The maximum number of retries in socket connections
static java.lang.String server_host
          Server name.
static int server_port
          Server Port.
 
Constructor Summary
Config()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

server_host

public static final java.lang.String server_host
Server name. The server hostname where clients should send requests to.

server_port

public static final int server_port
Server Port. The port on which the server listens to client connections.

max_connections

public static final int max_connections
The maximum number of concurrent client connection requests, to the server.

max_socket_retries

public static final int max_socket_retries
The maximum number of retries in socket connections
Constructor Detail

Config

public Config()