HttpSequence.java
3.24 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
package com.ecar.apm.model;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import com.ecar.apm.util.GuidGenerator;
public class HttpSequence {
public HttpSequence(){
}
public static HttpSequence getHttpSequence(HttpRequestForm httpRequestForm){
HttpSequence h = new HttpSequence();
h.setGuid(httpRequestForm.getPguid());
h.setGroup(httpRequestForm.getGroup());
h.setType(httpRequestForm.getType());
h.setName( httpRequestForm.getName());
h.setFrequency(httpRequestForm.getFrequency());
h.setRemark(httpRequestForm.getRemark());
return h;
}
public enum MonitorType {
SINGLE, SEQUENCE
}
private int id;
private String guid;
private String group;//所属组
private MonitorType type;//类型:SINGLE-单个接口;SEQUENCE-多个接口
private String name;
private MonitorFrequency frequency = MonitorFrequency.THIRTY;//监控频率
private String variableResult;
private String remark;
private List<HttpRequest> httpRequest;
private HashMap<String,String> variableResultMap = new HashMap<String,String>();
private String jobName;//quartz调度的job名称
private boolean enabled;//是否启动监控
private boolean archived;//是否删除(0-有效,1-删除)
private Date createTime;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public List<HttpRequest> getHttpRequest() {
return httpRequest;
}
public void setHttpRequest(List<HttpRequest> httpRequest) {
this.httpRequest = httpRequest;
}
public HashMap<String, String> getVariableResultMap() {
return variableResultMap;
}
public void setVariableResultMap(HashMap<String, String> variableResultMap) {
this.variableResultMap = variableResultMap;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getGuid() {
return guid;
}
public void setGuid(String guid) {
this.guid = guid;
}
public String getGroup() {
return group;
}
public void setGroup(String group) {
this.group = group;
}
public String getVariableResult() {
return variableResult;
}
public void setVariableResult(String variableResult) {
this.variableResult = variableResult;
}
public MonitorType getType() {
return type;
}
public void setType(MonitorType type) {
this.type = type;
}
public MonitorFrequency getFrequency() {
return frequency;
}
public void setFrequency(MonitorFrequency frequency) {
this.frequency = frequency;
}
public String getJobName() {
return jobName;
}
public void setJobName(String jobName) {
this.jobName = jobName;
}
public boolean isEnabled() {
return enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public boolean isArchived() {
return archived;
}
public void setArchived(boolean archived) {
this.archived = archived;
}
public static String getMonitorTypeName(String type){
return "SEQUENCE".equals(type) ? "多API":"单API";
}
}