wrapper
Class ResultStatus

java.lang.Object
  |
  +--wrapper.ResultStatus

public class ResultStatus
extends java.lang.Object

Contains status information for a result parameter.


Field Summary
 float accuracy
           
 java.lang.Integer invocationId
          InvocationId of the invocation to which this result status belongs.
 java.lang.String name
          Name of the parameter.
 java.lang.String status
          Status of the result.
 
Constructor Summary
ResultStatus(java.lang.String name, java.lang.Integer invocationId)
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

name

public final java.lang.String name
Name of the parameter.

invocationId

public final java.lang.Integer invocationId
InvocationId of the invocation to which this result status belongs.

status

public java.lang.String status
Status of the result. Possible values are:
NOT_DONE (no result yet available),
PARTIAL (some result available, is not yet final result),
DONE (final result available)

accuracy

public float accuracy
Constructor Detail

ResultStatus

public ResultStatus(java.lang.String name,
                    java.lang.Integer invocationId)