ConstantEnum.java
1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/**
*
*/
package com.yoho.jobs.common.domain;
/**
* @author yanzhang.fu
*
*/
public interface ConstantEnum {
public enum ActiveModeEnum {
SINGLE(0, "单次执行"), LOOP(1, "循环执行");
private int value;
private String name;
private ActiveModeEnum(int value, String name) {
this.value = value;
this.name = name;
}
public int getValue() {
return value;
}
public String getName() {
return name;
}
}
public enum JobStatusEnum {
STOPPING(0, "未执行"), STARTING(1, "正在执行");
private int value;
private String name;
private JobStatusEnum(int value, String name) {
this.value = value;
this.name = name;
}
public int getValue() {
return value;
}
public String getName() {
return name;
}
}
public enum JobOperatorEnum {
EXEC(0, "执行"), UPDATE(1, "更新"), STOP(2, "停止"), CREATE(3, "新建"), TRIGGER(4, "任务触发");
private int value;
private String name;
private JobOperatorEnum(int value, String name) {
this.value = value;
this.name = name;
}
public int getValue() {
return value;
}
public String getName() {
return name;
}
}
public class JobResponse {
public static final String SUCCESS = "200";
public static final String SUCCESS_DESC = "success";
public static final String FAIL = "1";
}
enum JobType {
SINGLE_NODE(0), MUTIL_NODE(1);
int type;
private JobType(int type) {
this.type = type;
}
public int getType() {
return type;
}
}
public class JobProcessResultCode {
/**
* 任务处理成功标志
*/
public static final String SUCCESS_CODE = "success";
/**
* 任务处理失败标志
*/
public static final String ERROR_CODE = "error";
}
}