-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCodeMapping.java
More file actions
143 lines (116 loc) · 3.95 KB
/
Copy pathCodeMapping.java
File metadata and controls
143 lines (116 loc) · 3.95 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
/*******************************************************************************
* Copyright 2020 Observational Health Data Sciences and Informatics & The Hyve
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package org.ohdsi.usagi;
import org.ohdsi.usagi.ui.Global;
import org.ohdsi.usagi.Equivalence;
import java.util.ArrayList;
import java.util.List;
/**
* Data class for holding information on a single source code and its mapping
*
* @author MSCHUEMI
*/
public class CodeMapping {
public enum MappingStatus {
// Includes IGNORED for backwards compatibility
APPROVED, UNCHECKED, AUTO_MAPPED, AUTO_MAPPED_TO_1, INVALID_TARGET, FLAGGED, IGNORED
}
private SourceCode sourceCode;
private double matchScore;
private MappingStatus mappingStatus;
private Equivalence equivalence;
private List<MappingTarget> targetConcepts = new ArrayList<>(1);
private String comment;
private String statusSetBy;
private long statusSetOn;
private String assignedReviewer;
public CodeMapping(SourceCode sourceCode) {
this.setSourceCode(sourceCode);
}
public void approve(Equivalence equivalence) {
setStatus(MappingStatus.APPROVED);
this.setEquivalence(equivalence);
}
public void flag(Equivalence equivalence) {
setStatus(MappingStatus.FLAGGED);
this.setEquivalence(equivalence);
}
public void setStatus(MappingStatus mappingStatus) {
this.setMappingStatus(mappingStatus);
this.setStatusSetOn(System.currentTimeMillis());
this.setStatusSetBy(Global.author);
}
public void setUnchecked() {
this.setMappingStatus(MappingStatus.UNCHECKED);
this.setEquivalence(Equivalence.UNREVIEWED);
this.setStatusSetOn(0);
this.setStatusSetBy("");
}
public SourceCode getSourceCode() {
return sourceCode;
}
public void setSourceCode(SourceCode sourceCode) {
this.sourceCode = sourceCode;
}
public double getMatchScore() {
return matchScore;
}
public void setMatchScore(double matchScore) {
this.matchScore = matchScore;
}
public MappingStatus getMappingStatus() {
return mappingStatus;
}
public void setMappingStatus(MappingStatus mappingStatus) {
this.mappingStatus = mappingStatus;
}
public Equivalence getEquivalence() {
return equivalence;
}
public void setEquivalence(Equivalence equivalence) {
this.equivalence = equivalence;
}
public List<MappingTarget> getTargetConcepts() {
return targetConcepts;
}
public void setTargetConcepts(List<MappingTarget> targetConcepts) {
this.targetConcepts = targetConcepts;
}
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public String getStatusSetBy() {
return statusSetBy;
}
public void setStatusSetBy(String statusSetBy) {
this.statusSetBy = statusSetBy;
}
public long getStatusSetOn() {
return statusSetOn;
}
public void setStatusSetOn(long statusSetOn) {
this.statusSetOn = statusSetOn;
}
public String getAssignedReviewer() {
return assignedReviewer;
}
public void setAssignedReviewer(String assignedReviewer) {
this.assignedReviewer = assignedReviewer;
}
}