Class 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

      Fields 
      Modifier and Type Field Description
      static int ERR_ARGS
      error status code for missing args
      static int ERR_CODESERVER
      error status code for a problem creating a shared code server
      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

      Constructors 
      Constructor Description
      BatchUtil()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • 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
      • ERR_CODESERVER

        public static final int ERR_CODESERVER
        error status code for a problem creating a shared code server
        See Also:
        Constant Field Values
    • Constructor Detail

      • BatchUtil

        public BatchUtil()