File tree Expand file tree Collapse file tree 3 files changed +14
-12
lines changed
src/main/java/org/reactome/server/graph/domain/model Expand file tree Collapse file tree 3 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 9
9
public class MarkerReference extends ControlReference {
10
10
11
11
@ Relationship (type = "marker" )
12
- private List < EntityWithAccessionedSequence > marker ;
12
+ private EntityWithAccessionedSequence marker ;
13
13
14
14
@ Relationship (type = "cell" )
15
15
private List <Cell > cell ;
16
16
17
17
public MarkerReference () {
18
18
}
19
19
20
- public List < EntityWithAccessionedSequence > getMarker () {
20
+ public EntityWithAccessionedSequence getMarker () {
21
21
return marker ;
22
22
}
23
23
24
- public void setMarker (List < EntityWithAccessionedSequence > marker ) {
24
+ public void setMarker (EntityWithAccessionedSequence marker ) {
25
25
this .marker = marker ;
26
26
}
27
27
Original file line number Diff line number Diff line change @@ -42,6 +42,9 @@ public class Pathway extends Event {
42
42
@ Relationship (type = "hasEvent" )
43
43
private SortedSet <HasEvent > hasEvent ;
44
44
45
+ @ ReactomeProperty
46
+ private String lastUpdatedDate ;
47
+
45
48
@ ReactomeRelationship
46
49
@ Relationship (type = "hasEncapsulatedEvent" )
47
50
private SortedSet <HasEncapsulatedEvent > hasEncapsulatedEvent ;
@@ -159,6 +162,14 @@ public void setNormalPathway(Pathway normalPathway) {
159
162
this .normalPathway = normalPathway ;
160
163
}
161
164
165
+ public String getLastUpdatedDate () {
166
+ return lastUpdatedDate ;
167
+ }
168
+
169
+ public void setLastUpdatedDate (String lastUpdatedDate ) {
170
+ this .lastUpdatedDate = lastUpdatedDate ;
171
+ }
172
+
162
173
@ ReactomeSchemaIgnore
163
174
@ Override
164
175
@ JsonIgnore
Original file line number Diff line number Diff line change @@ -57,8 +57,6 @@ public abstract class Regulation extends DatabaseObject {
57
57
@ Relationship (type = "revised" , direction = Relationship .Direction .INCOMING )
58
58
private List <InstanceEdit > revised ;
59
59
60
- @ Relationship (type = "summation" )
61
- private List <Summation > summation ;
62
60
63
61
public Regulation () {}
64
62
@@ -166,11 +164,4 @@ public void setRevised(List<InstanceEdit> revised) {
166
164
this .revised = revised ;
167
165
}
168
166
169
- public List <Summation > getSummation () {
170
- return summation ;
171
- }
172
-
173
- public void setSummation (List <Summation > summation ) {
174
- this .summation = summation ;
175
- }
176
167
}
You can’t perform that action at this time.
0 commit comments