org.ow2.clif.console.lib.batch
Class BatchUtil

java.lang.Object
  extended by org.ow2.clif.console.lib.batch.BatchUtil

public class BatchUtil
extends java.lang.Object

Static methods used by all batch commands. This class also defines a set of code return for each kind of error.

Author:
Joan Chaumont, Bruno Dillenseger

Field Summary
static int ERR_ARGS
          error status code for missing args
static int ERR_DEPLOY
          error status code for an undeployed test plan
static int ERR_EXEC
          error status code for execution problem
static int ERR_LIFECYCLE
          error status code for lifecycle violation
static int ERR_REGISTRY
          error status code for missing registry
static int SUCCESS
          success status code
 
Constructor Summary
BatchUtil()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SUCCESS

public static final int SUCCESS
success status code

See Also:
Constant Field Values

ERR_ARGS

public static final int ERR_ARGS
error status code for missing args

See Also:
Constant Field Values

ERR_EXEC

public static final int ERR_EXEC
error status code for execution problem

See Also:
Constant Field Values

ERR_LIFECYCLE

public static final int ERR_LIFECYCLE
error status code for lifecycle violation

See Also:
Constant Field Values

ERR_DEPLOY

public static final int ERR_DEPLOY
error status code for an undeployed test plan

See Also:
Constant Field Values

ERR_REGISTRY

public static final int ERR_REGISTRY
error status code for missing registry

See Also:
Constant Field Values
Constructor Detail

BatchUtil

public BatchUtil()