equip.runtime
Class StatusValues

java.lang.Object
  extended byequip.runtime.StatusValues

public class StatusValues
extends java.lang.Object

General operation status code - 0 = OK wherever possible (IDL'd in eqCoreTypes.idl). Exceptions are not currently (May 2002) used in EQUIP for the most part; rather return status codes are used. This is the main status code enumeration, although they are no necessarily used in a very precise way.

Some values and ideas are inherited from MASSIVE3 (e.g. STATUS_CONTROL) and not necessary used in EQUIP, at least for now.

NOTES:


Field Summary
static int STATUS_CONTROLLED
          MASSIVE-3 status meaning that an indirect request to the current owner might succeed
static int STATUS_ERROR
          operation failed completely (generic error)
static int STATUS_IGNORE
          can't remember
static int STATUS_NOT_OWNER
          request failed due to access control
static int STATUS_NOT_YET
          request could not be performed at the current time
static int STATUS_OK
          no error
static int STATUS_PARTIAL
          data partially read; may work if you try again
static int STATUS_PREMATURE_END
          file (or whatever) ended when more was expected
static int STATUS_REFUSED
          request refused
static int STATUS_SYNTAX_ERROR
          syntax error
static int STATUS_TIMEDOUT
          request timed out
 
Constructor Summary
StatusValues()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

STATUS_OK

public static final int STATUS_OK
no error

See Also:
Constant Field Values

STATUS_PARTIAL

public static final int STATUS_PARTIAL
data partially read; may work if you try again

See Also:
Constant Field Values

STATUS_ERROR

public static final int STATUS_ERROR
operation failed completely (generic error)

See Also:
Constant Field Values

STATUS_SYNTAX_ERROR

public static final int STATUS_SYNTAX_ERROR
syntax error

See Also:
Constant Field Values

STATUS_PREMATURE_END

public static final int STATUS_PREMATURE_END
file (or whatever) ended when more was expected

See Also:
Constant Field Values

STATUS_NOT_OWNER

public static final int STATUS_NOT_OWNER
request failed due to access control

See Also:
Constant Field Values

STATUS_REFUSED

public static final int STATUS_REFUSED
request refused

See Also:
Constant Field Values

STATUS_NOT_YET

public static final int STATUS_NOT_YET
request could not be performed at the current time

See Also:
Constant Field Values

STATUS_IGNORE

public static final int STATUS_IGNORE
can't remember

See Also:
Constant Field Values

STATUS_CONTROLLED

public static final int STATUS_CONTROLLED
MASSIVE-3 status meaning that an indirect request to the current owner might succeed

See Also:
Constant Field Values

STATUS_TIMEDOUT

public static final int STATUS_TIMEDOUT
request timed out

See Also:
Constant Field Values
Constructor Detail

StatusValues

public StatusValues()