Produced by Araxis Merge on 4/2/2019 1:06:54 PM 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\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\model\request | RfaiLookupRequest.java | Wed Mar 27 19:22:48 2019 UTC |
2 | C:\AraxisMergeCompare\Pri_re\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\model\request | RfaiLookupRequest.java | Thu Mar 28 17:50:44 2019 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 2 | 678 |
Changed | 1 | 2 |
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 | */ | |
4 | package go v.va.med.a rs.model.r equest; | |
5 | ||
6 | import jav ax.validat ion.constr aints.Patt ern; | |
7 | ||
8 | import org .springfra mework.ste reotype.Co mponent; | |
9 | ||
10 | import com .fasterxml .jackson.a nnotation. JsonInclud e; | |
11 | ||
12 | /** | |
13 | * @author
|
|
14 | * | |
15 | */ | |
16 | @Component | |
17 | public cla ss RfaiLoo kupRequest { | |
18 | ||
19 | pr ivate Inte ger pageSi ze; | |
20 | pr ivate Stri ng sortCol umn; | |
21 | pr ivate Bool ean descen ding; | |
22 | pr ivate Inte ger pageNu mber; | |
23 | ||
24 | pr ivate Stri ng number; | |
25 | ||
26 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
27 | pr ivate Stri ng provide rName; | |
28 | ||
29 | @P attern(reg exp = "(\\ d{10})?", message = "Provider NPI must b e 10 digit s long") | |
30 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
31 | pr ivate Stri ng provide rNpi; | |
32 | ||
33 | @P attern(reg exp = "(\\ d{9})?", m essage = " Provider T IN must be 9 digits long") | |
34 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
35 | pr ivate Stri ng provide rTin; | |
36 | ||
37 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
38 | pr ivate Stri ng patient LastName; | |
39 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
40 | pr ivate Stri ng patient firstName; | |
41 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
42 | pr ivate Stri ng patient Identifier ; | |
43 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
44 | pr ivate Stri ng patient ControlNum ber; | |
45 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
46 | pr ivate Stri ng lineIte mControlNu mber; | |
47 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
48 | pr ivate Stri ng service StartDate; | |
49 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
50 | pr ivate Stri ng service EndDate; | |
51 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
52 | pr ivate Stri ng medical RecordNumb er; | |
53 | ||
54 | /* * | |
55 | * | |
56 | * / | |
57 | pu blic RfaiL ookupReque st() { | |
58 | // T ODO Auto-g enerated c onstructor stub | |
59 | } | |
60 | ||
61 | /* * | |
62 | * @param nu mber | |
63 | * / | |
64 | pu blic RfaiL ookupReque st(String number) { | |
65 | supe r(); | |
66 | this .number = number; | |
67 | } | |
68 | ||
69 | /* * | |
70 | * @param id | |
71 | * @param pr oviderName | |
72 | * @param pr oviderNpi | |
73 | * @param pr oviderTin | |
74 | * @param pa tientLastN ame | |
75 | * @param pa tientfirst Name | |
76 | * @param pa tientIdent ifier | |
77 | * @param pa tientContr olNumber | |
78 | * @param li neItemCont rolNumber | |
79 | * @param se rviceStart Date | |
80 | * @param se rviceEndDa te | |
81 | * @param me dicalRecor dNumber | |
82 | * / | |
83 | pu blic RfaiL ookupReque st(String number, St ring provi derName, S tring prov iderNpi, S tring prov iderTin, | |
84 | String patientLa stName, St ring patie ntfirstNam e, String patientIde ntifier, S tring pati entControl Number, | |
85 | String lineItemC ontrolNumb er, String serviceSt artDate, S tring serv iceEndDate , String m edicalReco rdNumber) { | |
86 | supe r(); | |
87 | this .number = number; | |
88 | this .providerN ame = prov iderName; | |
89 | this .providerN pi = provi derNpi; | |
90 | this .providerT in = provi derTin; | |
91 | this .patientLa stName = p atientLast Name; | |
92 | this .patientfi rstName = patientfir stName; | |
93 | this .patientId entifier = patientId entifier; | |
94 | this .patientCo ntrolNumbe r = patien tControlNu mber; | |
95 | this .lineItemC ontrolNumb er = lineI temControl Number; | |
96 | this .serviceSt artDate = serviceSta rtDate; | |
97 | this .serviceEn dDate = se rviceEndDa te; | |
98 | this .medicalRe cordNumber = medical RecordNumb er; | |
99 | } | |
100 | ||
101 | /* * | |
102 | * @return t he number | |
103 | * / | |
104 | pu blic Strin g getNumbe r() { | |
105 | retu rn number; | |
106 | } | |
107 | ||
108 | /* * | |
109 | * @param nu mber | |
110 | * the numb er to set | |
111 | * / | |
112 | pu blic void setNumber( String num ber) { | |
113 | this .number = number; | |
114 | } | |
115 | ||
116 | /* * | |
117 | * @return t he provide rName | |
118 | * / | |
119 | pu blic Strin g getProvi derName() { | |
120 | retu rn provide rName; | |
121 | } | |
122 | ||
123 | /* * | |
124 | * @param pr oviderName | |
125 | * the prov iderName t o set | |
126 | * / | |
127 | pu blic void setProvide rName(Stri ng provide rName) { | |
128 | this .providerN ame = prov iderName; | |
129 | } | |
130 | ||
131 | /* * | |
132 | * @return t he provide rNpi | |
133 | * / | |
134 | pu blic Strin g getProvi derNpi() { | |
135 | retu rn provide rNpi; | |
136 | } | |
137 | ||
138 | /* * | |
139 | * @param pr oviderNpi | |
140 | * the prov iderNpi to set | |
141 | * / | |
142 | pu blic void setProvide rNpi(Strin g provider Npi) { | |
143 | this .providerN pi = provi derNpi; | |
144 | } | |
145 | ||
146 | /* * | |
147 | * @return t he provide rTin | |
148 | * / | |
149 | pu blic Strin g getProvi derTin() { | |
150 | retu rn provide rTin; | |
151 | } | |
152 | ||
153 | /* * | |
154 | * @param pr oviderTin | |
155 | * the prov iderTin to set | |
156 | * / | |
157 | pu blic void setProvide rTin(Strin g provider Tin) { | |
158 | this .providerT in = provi derTin; | |
159 | } | |
160 | ||
161 | /* * | |
162 | * @return t he patient LastName | |
163 | * / | |
164 | pu blic Strin g getPatie ntLastName () { | |
165 | retu rn patient LastName; | |
166 | } | |
167 | ||
168 | /* * | |
169 | * @param pa tientLastN ame | |
170 | * the pati entLastNam e to set | |
171 | * / | |
172 | pu blic void setPatient LastName(S tring pati entLastNam e) { | |
173 | this .patientLa stName = p atientLast Name; | |
174 | } | |
175 | ||
176 | /* * | |
177 | * @return t he patient firstName | |
178 | * / | |
179 | pu blic Strin g getPatie ntfirstNam e() { | |
180 | retu rn patient firstName; | |
181 | } | |
182 | ||
183 | /* * | |
184 | * @param pa tientfirst Name | |
185 | * the pati entfirstNa me to set | |
186 | * / | |
187 | pu blic void setPatient firstName( String pat ientfirstN ame) { | |
188 | this .patientfi rstName = patientfir stName; | |
189 | } | |
190 | ||
191 | /* * | |
192 | * @return t he patient Identifier | |
193 | * / | |
194 | pu blic Strin g getPatie ntIdentifi er() { | |
195 | retu rn patient Identifier ; | |
196 | } | |
197 | ||
198 | /* * | |
199 | * @param pa tientIdent ifier | |
200 | * the pati entIdentif ier to set | |
201 | * / | |
202 | pu blic void setPatient Identifier (String pa tientIdent ifier) { | |
203 | this .patientId entifier = patientId entifier; | |
204 | } | |
205 | ||
206 | /* * | |
207 | * @return t he patient ControlNum ber | |
208 | * / | |
209 | pu blic Strin g getPatie ntControlN umber() { | |
210 | retu rn patient ControlNum ber; | |
211 | } | |
212 | ||
213 | /* * | |
214 | * @param pa tientContr olNumber | |
215 | * the pati entControl Number to set | |
216 | * / | |
217 | pu blic void setPatient ControlNum ber(String patientCo ntrolNumbe r) { | |
218 | this .patientCo ntrolNumbe r = patien tControlNu mber; | |
219 | } | |
220 | ||
221 | /* * | |
222 | * @return t he lineIte mControlNu mber | |
223 | * / | |
224 | pu blic Strin g getLineI temControl Number() { | |
225 | retu rn lineIte mControlNu mber; | |
226 | } | |
227 | ||
228 | /* * | |
229 | * @param li neItemCont rolNumber | |
230 | * the line ItemContro lNumber to set | |
231 | * / | |
232 | pu blic void setLineIte mControlNu mber(Strin g lineItem ControlNum ber) { | |
233 | this .lineItemC ontrolNumb er = lineI temControl Number; | |
234 | } | |
235 | ||
236 | /* * | |
237 | * @return t he service StartDate | |
238 | * / | |
239 | pu blic Strin g getServi ceStartDat e() { | |
240 | retu rn service StartDate; | |
241 | } | |
242 | ||
243 | /* * | |
244 | * @param se rviceStart Date | |
245 | * the serv iceStartDa te to set | |
246 | * / | |
247 | pu blic void setService StartDate( String ser viceStartD ate) { | |
248 | this .serviceSt artDate = serviceSta rtDate; | |
249 | } | |
250 | ||
251 | /* * | |
252 | * @return t he service EndDate | |
253 | * / | |
254 | pu blic Strin g getServi ceEndDate( ) { | |
255 | retu rn service EndDate; | |
256 | } | |
257 | ||
258 | /* * | |
259 | * @param se rviceEndDa te | |
260 | * the serv iceEndDate to set | |
261 | * / | |
262 | pu blic void setService EndDate(St ring servi ceEndDate) { | |
263 | this .serviceEn dDate = se rviceEndDa te; | |
264 | } | |
265 | ||
266 | /* * | |
267 | * @return t he medical RecordNumb er | |
268 | * / | |
269 | pu blic Strin g getMedic alRecordNu mber() { | |
270 | retu rn medical RecordNumb er; | |
271 | } | |
272 | ||
273 | /* * | |
274 | * @param me dicalRecor dNumber | |
275 | * the medi calRecordN umber to s et | |
276 | * / | |
277 | pu blic void setMedical RecordNumb er(String medicalRec ordNumber) { | |
278 | this .medicalRe cordNumber = medical RecordNumb er; | |
279 | } | |
280 | ||
281 | /* * | |
282 | * @return t he pageSiz e | |
283 | * / | |
284 | pu blic Integ er getPage Size() { | |
285 | retu rn pageSiz e; | |
286 | } | |
287 | ||
288 | /* * | |
289 | * @param pa geSize | |
290 | * the page Size to se t | |
291 | * / | |
292 | pu blic void setPageSiz e(Integer pageSize) { | |
293 | this .pageSize = pageSize ; | |
294 | } | |
295 | ||
296 | /* * | |
297 | * @return t he sortCol umn | |
298 | * / | |
299 | pu blic Strin g getSortC olumn() { | |
300 | retu rn sortCol umn; | |
301 | } | |
302 | ||
303 | /* * | |
304 | * @param so rtColumn | |
305 | * the sort Column to set | |
306 | * / | |
307 | pu blic void setSortCol umn(String sortColum n) { | |
308 | this .sortColum n = sortCo lumn; | |
309 | } | |
310 | ||
311 | /* * | |
312 | * @return t he descend ing | |
313 | * / | |
314 | pu blic Boole an getDesc ending() { | |
315 | retu rn descend ing; | |
316 | } | |
317 | ||
318 | /* * | |
319 | * @param de scending | |
320 | * the desc ending to set | |
321 | * / | |
322 | pu blic void setDescend ing(Boolea n descendi ng) { | |
323 | this .descendin g = descen ding; | |
324 | } | |
325 | ||
326 | /* * | |
327 | * @return t he pageNum ber | |
328 | * / | |
329 | pu blic Integ er getPage Number() { | |
330 | retu rn pageNum ber; | |
331 | } | |
332 | ||
333 | /* * | |
334 | * @param pa geNumber | |
335 | * the page Number to set | |
336 | * / | |
337 | pu blic void setPageNum ber(Intege r pageNumb er) { | |
338 | this .pageNumbe r = pageNu mber; | |
339 | } | |
340 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.