1 package uk.ac.ebi.intenz.webapp.dtos;
2
3
4
5
6
7
8
9
10
11 public class GhostEnzymeDTO extends GhostEntityDTO {
12
13 String enzymeId;
14
15 String source;
16
17 String status;
18
19 String eventClass;
20
21 String eventNote;
22
23 boolean active;
24
25 public GhostEnzymeDTO() {
26 name = "";
27 }
28
29
30
31 public String getEnzymeId() {
32 return enzymeId;
33 }
34
35 public void setEnzymeId(String enzymeId) {
36 this.enzymeId = enzymeId;
37 }
38
39 public String getSource() {
40 return source;
41 }
42
43 public void setSource(String source) {
44 this.source = source;
45 }
46
47 public String getStatus() {
48 return status;
49 }
50
51 public void setStatus(String status) {
52 this.status = status;
53 }
54
55 public String getEventClass() {
56 return eventClass;
57 }
58
59 public void setEventClass(String eventClass) {
60 this.eventClass = eventClass;
61 }
62
63 public String getEventNote() {
64 return eventNote;
65 }
66
67 public void setEventNote(String eventNote) {
68 this.eventNote = eventNote;
69 }
70
71 public boolean getActive() {
72 return active;
73 }
74
75 public void setActive(boolean active) {
76 this.active = active;
77 }
78
79 }