Produced by Araxis Merge on 3/25/2019 8:58:01 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
# | Location | File | Last Modified |
---|---|---|---|
1 | C:\AraxisMergeCompare\Pri_un\IMAG_Source\VISA\Java\FederationCommon\main\src\java\gov\va\med\imaging\federation\rest\types | FederationWorkItemType.java | Mon Mar 18 20:39:14 2019 UTC |
2 | C:\AraxisMergeCompare\Pri_re\IMAG_Source\VISA\Java\FederationCommon\main\src\java\gov\va\med\imaging\federation\rest\types | FederationWorkItemType.java | Tue Mar 19 12:03:34 2019 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 3 | 404 |
Changed | 2 | 4 |
Inserted | 0 | 0 |
Removed | 0 | 0 |
Whitespace | |
---|---|
Character case | Differences in character case are significant |
Line endings | Differences in line endings (CR and LF characters) are ignored |
CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
1 | /** | |
2 | * | |
3 | Package: MAG - Vis tA Imaging | |
4 | WARNING: Per VHA D irective 2 004-038, t his routin e should n ot be modi fied. | |
5 | Date Cre ated: Jun 12, 2018 | |
6 | Developer: DNS tjahjb | |
7 | Descript ion: | |
8 | ||
9 | ;; +-------- ---------- ---------- ---------- ---------- ---------- ---------- + | |
10 | ;; Property of the US Government . | |
11 | ;; No permis sion to co py or redi stribute t his softwa re is give n. | |
12 | ;; Use of un released v ersions of this soft ware requi res the us er | |
13 | ;; to execu te a writt en test ag reement wi th the Vis tA Imaging | |
14 | ;; Developm ent Office of the De partment o f Veterans Affairs, | |
15 | ;; telephon e (301) 73 4-0100. | |
16 | ;; | |
17 | ;; The Food and Drug A dministrat ion classi fies this software a s | |
18 | ;; a Class I I medical device. A s such, it may not b e changed | |
19 | ;; in any wa y. Modifi cations to this soft ware may r esult in a n | |
20 | ;; adulterat ed medical device un der 21CFR8 20, the us e of which | |
21 | ;; is consid ered to be a violati on of US F ederal Sta tutes. | |
22 | ;; +-------- ---------- ---------- ---------- ---------- ---------- ---------- + | |
23 | ||
24 | */ | |
25 | package go v.va.med.i maging.fed eration.re st.types; | |
26 | ||
27 | import jav a.util.Dat e; | |
28 | ||
29 | import jav ax.xml.bin d.annotati on.XmlRoot Element; | |
30 | ||
31 | import gov .va.med.im aging.exch ange.busin ess.Persis tentEntity ; | |
32 | import gov .va.med.im aging.exch ange.busin ess.WorkIt emTags; | |
33 | ||
34 | /** | |
35 | * @author DNS tjahjb | |
36 | * | |
37 | */ | |
38 | @XmlRootEl ement | |
39 | public cla ss Federat ionWorkIte mType | |
40 | { | |
41 | pr ivate int id; | |
42 | pr ivate Stri ng type; | |
43 | pr ivate Stri ng subtype ; | |
44 | pr ivate Stri ng status; | |
45 | pr ivate Stri ng placeId ; | |
46 | pr ivate int priority; | |
47 | pr ivate Stri ng message ; | |
48 | pr ivate Stri ng created Date; | |
49 | pr ivate Stri ng creatin gUser = "" ; | |
50 | pr ivate Stri ng creatin gUserDispl ayName = " "; | |
51 | pr ivate Stri ng creatin gApplicati on = ""; | |
52 | pr ivate Stri ng lastUpd ateDate; | |
53 | pr ivate Stri ng updatin gUser = "" ; | |
54 | pr ivate Stri ng updatin gUserDispl ayName = " "; | |
55 | pr ivate Stri ng updatin gApplicati on = ""; | |
56 | pr ivate Stri ng patient Icn; | |
57 | pr ivate Stri ng context Id; | |
58 | ||
59 | pu blic Feder ationWorkI temType() | |
60 | { | |
61 | supe r(); | |
62 | } | |
63 | ||
64 | pu blic Feder ationWorkI temType(St ring type, String su btype, Str ing status , String p laceId, | |
65 | String creatingU ser, Strin g creating Applicatio n, String patientIcn , String c ontextId) | |
66 | { | |
67 | supe r(); | |
68 | this .type = ty pe; | |
69 | this .subtype = subtype; | |
70 | this .status = status; | |
71 | this .placeId = placeId; | |
72 | this .creatingU ser = crea tingUser; | |
73 | this .creatingA pplication = creatin gApplicati on; | |
74 | this .patientIc n = patien tIcn; | |
75 | this .contextId = context Id; | |
76 | } | |
77 | ||
78 | ||
79 | // pu blic void addTag(Str ing key, S tring valu e) | |
80 | // { | |
81 | // if ( getTags() == null) | |
82 | // { | |
83 | // setTag s(new Work ItemTags() ); | |
84 | // } | |
85 | // | |
86 | // getT ags().addT ag(key, va lue); | |
87 | // | |
88 | // } | |
89 | // | |
90 | pu blic int g etId() { | |
91 | retu rn id; | |
92 | } | |
93 | pu blic void setId(int id) { | |
94 | this .id = id; | |
95 | } | |
96 | pu blic Strin g getType( ) { | |
97 | retu rn type; | |
98 | } | |
99 | pu blic void setType(St ring type) { | |
100 | this .type = ty pe; | |
101 | } | |
102 | pu blic Strin g getSubty pe() { | |
103 | retu rn subtype + ""; | |
104 | } | |
105 | pu blic void setSubtype (String su btype) { | |
106 | this .subtype = subtype; | |
107 | } | |
108 | pu blic Strin g getStatu s() { | |
109 | retu rn status + ""; | |
110 | } | |
111 | pu blic void setStatus( String sta tus) { | |
112 | this .status = status; | |
113 | } | |
114 | pu blic Strin g getPlace Id() { | |
115 | retu rn placeId + ""; | |
116 | } | |
117 | pu blic void setPlaceId (String pl aceId) { | |
118 | this .placeId = placeId; | |
119 | } | |
120 | pu blic int g etPriority () { | |
121 | retu rn priorit y; | |
122 | } | |
123 | pu blic void setPriorit y(int prio rity) { | |
124 | this .priority = priority ; | |
125 | } | |
126 | pu blic Strin g getMessa ge() { | |
127 | retu rn message + ""; | |
128 | } | |
129 | pu blic void setMessage (String me ssage) { | |
130 | this .message = message; | |
131 | } | |
132 | pu blic Strin g getCreat edDate() { | |
133 | retu rn created Date; | |
134 | } | |
135 | pu blic void setCreated Date(Strin g createdD ate) { | |
136 | this .createdDa te = creat edDate; | |
137 | } | |
138 | pu blic Strin g getCreat ingUser() { | |
139 | retu rn creatin gUser + "" ; | |
140 | } | |
141 | pu blic void setCreatin gUser(Stri ng creatin gUser) { | |
142 | this .creatingU ser = crea tingUser; | |
143 | } | |
144 | pu blic Strin g getCreat ingApplica tion() { | |
145 | retu rn creatin gApplicati on + ""; | |
146 | } | |
147 | pu blic void setCreatin gApplicati on(String creatingAp plication) { | |
148 | this .creatingA pplication = creatin gApplicati on; | |
149 | } | |
150 | pu blic Strin g getLastU pdateDate( ) { | |
151 | retu rn lastUpd ateDate; | |
152 | } | |
153 | pu blic void setLastUpd ateDate(St ring lastU pdateDate) { | |
154 | this .lastUpdat eDate= las tUpdateDat e; | |
155 | } | |
156 | pu blic Strin g getUpdat ingUser() { | |
157 | retu rn updatin gUser + "" ; | |
158 | } | |
159 | pu blic void setUpdatin gUser(Stri ng updatin gUser) { | |
160 | this .updatingU ser = upda tingUser; | |
161 | } | |
162 | pu blic Strin g getUpdat ingApplica tion() { | |
163 | retu rn updatin gApplicati on + ""; | |
164 | } | |
165 | pu blic void setUpdatin gApplicati on(String updatingAp plication) { | |
166 | this .updatingA pplication = updatin gApplicati on; | |
167 | } | |
168 | // pu blic WorkI temTags ge tTags() { | |
169 | // retu rn tags; | |
170 | // } | |
171 | // pu blic void setTags(Wo rkItemTags tags) { | |
172 | // this .tags = ta gs; | |
173 | // } | |
174 | ||
175 | pu blic void setCreatin gUserDispl ayName(Str ing creati ngUserDisp layName) { | |
176 | this .creatingU serDisplay Name = cre atingUserD isplayName ; | |
177 | } | |
178 | ||
179 | pu blic Strin g getCreat ingUserDis playName() { | |
180 | retu rn creatin gUserDispl ayName; | |
181 | } | |
182 | ||
183 | pu blic void setUpdatin gUserDispl ayName(Str ing updati ngUserDisp layName) { | |
184 | this .updatingU serDisplay Name = upd atingUserD isplayName ; | |
185 | } | |
186 | ||
187 | pu blic Strin g getUpdat ingUserDis playName() { | |
188 | retu rn updatin gUserDispl ayName; | |
189 | } | |
190 | ||
191 | pu blic Strin g getPatie ntIcn() { | |
192 | retu rn patient Icn; | |
193 | } | |
194 | pu blic void setPatient Icn(String patientIc n) { | |
195 | this .patientIc n = patien tIcn; | |
196 | } | |
197 | ||
198 | pu blic Strin g getConte xtId() { | |
199 | retu rn context Id; | |
200 | } | |
201 | pu blic void setContext Id(String contextId) { | |
202 | this .contextId = context Id; | |
203 | } | |
204 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.