Uses of Class
restart.common.ErrorCode

Packages that use ErrorCode
restart.common   
restart.server   
restart.xml.server   
 

Uses of ErrorCode in restart.common
 

Methods in restart.common that return ErrorCode
static ErrorCode ErrorCode.fromInt(int i)
           
static ErrorCode ErrorCode.fromString(java.lang.String s)
           
static ErrorCode ErrorCode.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ErrorCode[] ErrorCode.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Uses of ErrorCode in restart.server
 

Methods in restart.server that return ErrorCode
 ErrorCode ServiceOutput.getErrCode()
          Get the error code
 ErrorCode RestException.getHttpErrorCode()
           
 

Methods in restart.server with parameters of type ErrorCode
static void ErrorThread.sendErrorAndClose(java.net.Socket socket, ErrorCode errCode)
          Return an error code to the client and close the socket.
 

Constructors in restart.server with parameters of type ErrorCode
RestException(ErrorCode httpErrorCode)
           
RestException(ErrorCode httpErrorCode, java.lang.String string)
           
ServiceOutput(ErrorCode errcode)
          Default constructor
 

Uses of ErrorCode in restart.xml.server
 

Constructors in restart.xml.server with parameters of type ErrorCode
XMLServiceOutput(ErrorCode errcode)