com.genesyslab.omsdk.mil
Class MILUCSInteractionStatus

java.lang.Object
  extended bycom.genesyslab.omsdk.commons.OMSDKEnum
      extended bycom.genesyslab.omsdk.mil.MILUCSInteractionStatus

public class MILUCSInteractionStatus
extends OMSDKEnum

Enumerates the possible statuses for an interaction stored in UCS.

Since:
7.1.000.00

Field Summary
static MILUCSInteractionStatus IN_PROCESS
          Indicates that the interaction is in process.
static int IN_PROCESS_INT
          Integer representation of IN_PROCESS.
static MILUCSInteractionStatus NEW
          Indicates that the interaction is new.
static int NEW_INT
          Integer representation of NEW.
static MILUCSInteractionStatus PENDING
          Indicates that the interaction is pending.
static int PENDING_INT
          Integer representation of PENDING.
static MILUCSInteractionStatus STOPPED
          Indicates that the interaction is stopped.
static int STOPPED_INT
          Integer representation of STOPPED.
static MILUCSInteractionStatus UNKNOWN
          Special status.
static int UNKNOWN_INT
          Integer representation of UNKNOWN.
 
Method Summary
static MILUCSInteractionStatus getStatus(int ordinal)
          Returns the enumerated value corresponding to the specified integer.
 
Methods inherited from class com.genesyslab.omsdk.commons.OMSDKEnum
toInt, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

NEW_INT

public static final int NEW_INT
Integer representation of NEW.

See Also:
Constant Field Values

NEW

public static final MILUCSInteractionStatus NEW
Indicates that the interaction is new.


PENDING_INT

public static final int PENDING_INT
Integer representation of PENDING.

See Also:
Constant Field Values

PENDING

public static final MILUCSInteractionStatus PENDING
Indicates that the interaction is pending.


IN_PROCESS_INT

public static final int IN_PROCESS_INT
Integer representation of IN_PROCESS.

See Also:
Constant Field Values

IN_PROCESS

public static final MILUCSInteractionStatus IN_PROCESS
Indicates that the interaction is in process.


STOPPED_INT

public static final int STOPPED_INT
Integer representation of STOPPED.

See Also:
Constant Field Values

STOPPED

public static final MILUCSInteractionStatus STOPPED
Indicates that the interaction is stopped.


UNKNOWN_INT

public static final int UNKNOWN_INT
Integer representation of UNKNOWN.

See Also:
Constant Field Values

UNKNOWN

public static final MILUCSInteractionStatus UNKNOWN
Special status. Indicates that MIL cannot determine the interaction status. For interaction retrieved from UCS - means that status of ineteraction is unknown. (UCS does not return status). For new interaction being submitted to UCS - means that status is not sent to UCS and MIL will rely on UCS (NOTE: this is not default behavior for MIL, by default MIL sets status to NEW)

Method Detail

getStatus

public static MILUCSInteractionStatus getStatus(int ordinal)
Returns the enumerated value corresponding to the specified integer.

Parameters:
ordinal - integer representation.
Returns:
the enumerated value.