source: DCWoRMS/branches/coolemall/src/qcg/shared/constants/BrokerConstants.java @ 1381

Revision 1381, 1.3 KB checked in by wojtekp, 11 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1/*
2 * Created on Jun 13, 2004
3 *
4 */
5package qcg.shared.constants;
6
7
8/**
9 * @author yulo
10 *
11 */
12public interface BrokerConstants {
13   
14   
15    public static final long JOB_STATUS_UNSUBMITTED = 1;
16    public static final long JOB_STATUS_SUBMITTED = 2;
17    public static final long JOB_STATUS_ACTIVE = 4;
18    public static final long JOB_STATUS_FINISHED = 8;
19    public static final long JOB_STATUS_FAILED = 16;
20    public static final long JOB_STATUS_CANCELED = 32;
21    public static final long JOB_STATUS_SUSPENDED = 64;
22    public static final long JOB_STATUS_BROKEN = 128;
23    public static final long JOB_STATUS_UNCOMMITTED = 256;
24   
25    public static final long TASK_STATUS_UNSUBMITTED = 1;
26    public static final long TASK_STATUS_QUEUED = 2;
27    public static final long TASK_STATUS_PREPROCESSING = 4;
28    public static final long TASK_STATUS_PENDING = 8;
29    public static final long TASK_STATUS_RUNNING = 16;
30    public static final long TASK_STATUS_STOPPED = 32;
31    public static final long TASK_STATUS_POSTPROCESSING = 64;
32    public static final long TASK_STATUS_FINISHED = 128;
33    public static final long TASK_STATUS_SUSPENDED = 256;
34    public static final long TASK_STATUS_FAILED = 512;
35    public static final long TASK_STATUS_CANCELED = 1024;
36    public static final long TASK_STATUS_UNCOMMITTED = 2048;
37   
38
39}
Note: See TracBrowser for help on using the repository browser.