Changes from JWS2 branch merged, mostly javadoc
[jabaws.git] / datamodel / compbio / metadata / JobStatus.java
index 4f396a7..75aa1f7 100644 (file)
@@ -23,56 +23,56 @@ package compbio.metadata;
  * \r
  * @author pvtroshin\r
  * \r
- *         Date October 2009\r
+ * @version 1.0 October 2009\r
  */\r
 public enum JobStatus {\r
 \r
-    /**\r
-     * Jobs which are in the queue and awaiting execution reported for cluster\r
-     * jobs only\r
-     */\r
-    PENDING,\r
+       /**\r
+        * Jobs which are in the queue and awaiting execution reported for cluster\r
+        * jobs only\r
+        */\r
+       PENDING,\r
 \r
-    /**\r
-     * Jobs that are running\r
-     */\r
-    RUNNING,\r
+       /**\r
+        * Jobs that are running\r
+        */\r
+       RUNNING,\r
 \r
-    /**\r
-     * Jobs that has been cancelled\r
-     */\r
-    CANCELLED,\r
+       /**\r
+        * Jobs that has been cancelled\r
+        */\r
+       CANCELLED,\r
 \r
-    /**\r
-     * Finished jobs\r
-     */\r
-    FINISHED,\r
+       /**\r
+        * Finished jobs\r
+        */\r
+       FINISHED,\r
 \r
-    /**\r
-     * Failed jobs\r
-     */\r
-    FAILED,\r
+       /**\r
+        * Failed jobs\r
+        */\r
+       FAILED,\r
 \r
-    /**\r
-     * Represents jobs with unknown status\r
-     */\r
-    UNDEFINED,\r
+       /**\r
+        * Represents jobs with unknown status\r
+        */\r
+       UNDEFINED,\r
 \r
-    // These relates to the status recorded on the file system\r
-    /**\r
-     * Job calculation has been started. First status reported by the local\r
-     * engine\r
-     */\r
-    STARTED,\r
+       // These relates to the status recorded on the file system\r
+       /**\r
+        * Job calculation has been started. First status reported by the local\r
+        * engine\r
+        */\r
+       STARTED,\r
 \r
-    /**\r
-     * Job has been submitted. This status is only set for cluster jobs\r
-     */\r
-    SUBMITTED,\r
+       /**\r
+        * Job has been submitted. This status is only set for cluster jobs\r
+        */\r
+       SUBMITTED,\r
 \r
-    /**\r
-     * Results has been collected\r
-     */\r
-    COLLECTED\r
+       /**\r
+        * Results has been collected\r
+        */\r
+       COLLECTED\r
 \r
 }\r