-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCompliance.java
More file actions
47 lines (37 loc) · 1009 Bytes
/
Copy pathCompliance.java
File metadata and controls
47 lines (37 loc) · 1009 Bytes
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
package Entity;
public class Compliance {
private String resultId;
private String assetId;
private String status;
private String action;
public Compliance(String resultId, String assetId, String status, String action) {
this.resultId = resultId;
this.assetId = assetId;
this.status = status;
this.action = action;
}
public void setResultId(String resultId) {
this.resultId = resultId;
}
public void setAssetId(String assetId) {
this.assetId = assetId;
}
public void setStatus(String status) {
this.status = status;
}
public void setAction(String action) {
this.action = action;
}
public String getResultId() {
return resultId;
}
public String getAssetId() {
return assetId;
}
public String getStatus() {
return status;
}
public String getAction() {
return action;
}
}