com.cri.xcat.api
Class XcatConstants

java.lang.Object
  extended by com.cri.xcat.api.XcatConstants

public class XcatConstants
extends java.lang.Object


Field Summary
static java.lang.String DEFAULT_HOSTNAME
          The default host which is running the xCAT daemon.
static int DEFAULT_PORT
          The default port which the xCAT daemon is listening on.
static int DEFAULT_SOCKET_TIMEOUT
          The default socket timeout (in milliseconds) to listen for a response from the xCAT server.
static java.lang.String REQUEST_ROOT_XML_TAG
          The default root tag for the XML request that is sent to the xCAT server.
static java.lang.String RESPONSE_ROOT_XML_TAG
          This is the root XML tag for all of xcatd's responses.
static java.lang.String SERVERDONE_XML_TAG
          This is the XML tag that signifies the server is done processing the request.
 
Constructor Summary
XcatConstants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

REQUEST_ROOT_XML_TAG

public static final java.lang.String REQUEST_ROOT_XML_TAG
The default root tag for the XML request that is sent to the xCAT server.

See Also:
Constant Field Values

RESPONSE_ROOT_XML_TAG

public static final java.lang.String RESPONSE_ROOT_XML_TAG
This is the root XML tag for all of xcatd's responses.

See Also:
Constant Field Values

SERVERDONE_XML_TAG

public static final java.lang.String SERVERDONE_XML_TAG
This is the XML tag that signifies the server is done processing the request.

See Also:
Constant Field Values

DEFAULT_HOSTNAME

public static final java.lang.String DEFAULT_HOSTNAME
The default host which is running the xCAT daemon. Set to localhost.

See Also:
Constant Field Values

DEFAULT_PORT

public static final int DEFAULT_PORT
The default port which the xCAT daemon is listening on. Set to 3001.

See Also:
Constant Field Values

DEFAULT_SOCKET_TIMEOUT

public static final int DEFAULT_SOCKET_TIMEOUT
The default socket timeout (in milliseconds) to listen for a response from the xCAT server. Set to 8000

See Also:
Constant Field Values
Constructor Detail

XcatConstants

public XcatConstants()