X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=datamodel%2Fcompbio%2Fmetadata%2FJobStatus.java;h=75aa1f73caa90fd27ee92358bdec2fad78d05a91;hb=aca9c5503b812c9c96aebb408748dc15728f9ad7;hp=4f396a71ba83f7714c0f1e4f2403ac0cbc9b5f11;hpb=535359a3d592ee41bda72e7356f0181f6cee9d07;p=jabaws.git diff --git a/datamodel/compbio/metadata/JobStatus.java b/datamodel/compbio/metadata/JobStatus.java index 4f396a7..75aa1f7 100644 --- a/datamodel/compbio/metadata/JobStatus.java +++ b/datamodel/compbio/metadata/JobStatus.java @@ -23,56 +23,56 @@ package compbio.metadata; * * @author pvtroshin * - * Date October 2009 + * @version 1.0 October 2009 */ public enum JobStatus { - /** - * Jobs which are in the queue and awaiting execution reported for cluster - * jobs only - */ - PENDING, + /** + * Jobs which are in the queue and awaiting execution reported for cluster + * jobs only + */ + PENDING, - /** - * Jobs that are running - */ - RUNNING, + /** + * Jobs that are running + */ + RUNNING, - /** - * Jobs that has been cancelled - */ - CANCELLED, + /** + * Jobs that has been cancelled + */ + CANCELLED, - /** - * Finished jobs - */ - FINISHED, + /** + * Finished jobs + */ + FINISHED, - /** - * Failed jobs - */ - FAILED, + /** + * Failed jobs + */ + FAILED, - /** - * Represents jobs with unknown status - */ - UNDEFINED, + /** + * Represents jobs with unknown status + */ + UNDEFINED, - // These relates to the status recorded on the file system - /** - * Job calculation has been started. First status reported by the local - * engine - */ - STARTED, + // These relates to the status recorded on the file system + /** + * Job calculation has been started. First status reported by the local + * engine + */ + STARTED, - /** - * Job has been submitted. This status is only set for cluster jobs - */ - SUBMITTED, + /** + * Job has been submitted. This status is only set for cluster jobs + */ + SUBMITTED, - /** - * Results has been collected - */ - COLLECTED + /** + * Results has been collected + */ + COLLECTED }