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 | CodeAndModifierRequest.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 | CodeAndModifierRequest.java | Thu Mar 28 17:50:44 2019 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 2 | 488 |
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 com .fasterxml .jackson.a nnotation. JsonInclud e; | |
7 | ||
8 | /** | |
9 | * @author
|
|
10 | * | |
11 | */ | |
12 | public cla ss CodeAnd ModifierRe quest { | |
13 | ||
14 | pr ivate Long cd; | |
15 | pr ivate Stri ng stcCd; | |
16 | pr ivate Stri ng stcCdDe sc; | |
17 | pr ivate Stri ng startDa te; | |
18 | pr ivate Stri ng endDate ; | |
19 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
20 | pr ivate bool ean flag; | |
21 | pr ivate bool ean archiv e; | |
22 | ||
23 | @J sonInclude (JsonInclu de.Include .NON_NULL) | |
24 | pr ivate Stri ng level; | |
25 | ||
26 | /* * | |
27 | * | |
28 | * / | |
29 | pu blic CodeA ndModifier Request() { | |
30 | supe r(); | |
31 | // T ODO Auto-g enerated c onstructor stub | |
32 | } | |
33 | ||
34 | /* * | |
35 | * @param cd | |
36 | * @param st cCd | |
37 | * @param st cCdDesc | |
38 | * @param fl ag | |
39 | * / | |
40 | pu blic CodeA ndModifier Request(Lo ng cd, Str ing stcCd, String st cCdDesc, b oolean fla g) { | |
41 | supe r(); | |
42 | this .cd = cd; | |
43 | this .stcCd = s tcCd; | |
44 | this .stcCdDesc = stcCdDe sc; | |
45 | this .flag = fl ag; | |
46 | } | |
47 | ||
48 | /* * | |
49 | * @param cd | |
50 | * @param st cCd | |
51 | * @param st cCdDesc | |
52 | * @param st artDate | |
53 | * @param en dDate | |
54 | * @param fl ag | |
55 | * / | |
56 | pu blic CodeA ndModifier Request(Lo ng cd, Str ing stcCd, String st cCdDesc, S tring star tDate, Str ing endDat e, | |
57 | boolea n flag) { | |
58 | supe r(); | |
59 | this .cd = cd; | |
60 | this .stcCd = s tcCd; | |
61 | this .stcCdDesc = stcCdDe sc; | |
62 | this .startDate = startDa te; | |
63 | this .endDate = endDate; | |
64 | this .flag = fl ag; | |
65 | } | |
66 | ||
67 | /* * | |
68 | * @param cd | |
69 | * @param st cCd | |
70 | * @param st cCdDesc | |
71 | * @param st artDate | |
72 | * @param en dDate | |
73 | * @param fl ag | |
74 | * @param ar chive | |
75 | * / | |
76 | pu blic CodeA ndModifier Request(Lo ng cd, Str ing stcCd, String st cCdDesc, S tring star tDate, Str ing endDat e, | |
77 | boolea n flag, bo olean arch ive) { | |
78 | supe r(); | |
79 | this .cd = cd; | |
80 | this .stcCd = s tcCd; | |
81 | this .stcCdDesc = stcCdDe sc; | |
82 | this .startDate = startDa te; | |
83 | this .endDate = endDate; | |
84 | this .flag = fl ag; | |
85 | this .archive = archive; | |
86 | } | |
87 | ||
88 | /* * | |
89 | * @param cd | |
90 | * @param st cCd | |
91 | * @param st cCdDesc | |
92 | * @param st artDate | |
93 | * @param en dDate | |
94 | * @param fl ag | |
95 | * @param ar chive | |
96 | * @param lo incType | |
97 | * / | |
98 | pu blic CodeA ndModifier Request(Lo ng cd, Str ing stcCd, String st cCdDesc, S tring star tDate, Str ing endDat e, | |
99 | boolea n flag, bo olean arch ive, Strin g loincTyp e) { | |
100 | supe r(); | |
101 | this .cd = cd; | |
102 | this .stcCd = s tcCd; | |
103 | this .stcCdDesc = stcCdDe sc; | |
104 | this .startDate = startDa te; | |
105 | this .endDate = endDate; | |
106 | this .flag = fl ag; | |
107 | this .archive = archive; | |
108 | this .level = l oincType; | |
109 | } | |
110 | ||
111 | /* * | |
112 | * @return t he cd | |
113 | * / | |
114 | pu blic Long getCd() { | |
115 | retu rn cd; | |
116 | } | |
117 | ||
118 | /* * | |
119 | * @param cd | |
120 | * the cd t o set | |
121 | * / | |
122 | pu blic void setCd(Long cd) { | |
123 | this .cd = cd; | |
124 | } | |
125 | ||
126 | /* * | |
127 | * @return t he stcCd | |
128 | * / | |
129 | pu blic Strin g getStcCd () { | |
130 | retu rn stcCd; | |
131 | } | |
132 | ||
133 | /* * | |
134 | * @param st cCd | |
135 | * the stcC d to set | |
136 | * / | |
137 | pu blic void setStcCd(S tring stcC d) { | |
138 | this .stcCd = s tcCd; | |
139 | } | |
140 | ||
141 | /* * | |
142 | * @return t he stcCdDe sc | |
143 | * / | |
144 | pu blic Strin g getStcCd Desc() { | |
145 | retu rn stcCdDe sc; | |
146 | } | |
147 | ||
148 | /* * | |
149 | * @param st cCdDesc | |
150 | * the stcC dDesc to s et | |
151 | * / | |
152 | pu blic void setStcCdDe sc(String stcCdDesc) { | |
153 | this .stcCdDesc = stcCdDe sc; | |
154 | } | |
155 | ||
156 | /* * | |
157 | * @return t he flag | |
158 | * / | |
159 | pu blic boole an isFlag( ) { | |
160 | retu rn flag; | |
161 | } | |
162 | ||
163 | /* * | |
164 | * @param fl ag | |
165 | * the flag to set | |
166 | * / | |
167 | pu blic void setFlag(bo olean flag ) { | |
168 | this .flag = fl ag; | |
169 | } | |
170 | ||
171 | pu blic Strin g getStart Date() { | |
172 | retu rn startDa te; | |
173 | } | |
174 | ||
175 | pu blic void setStartDa te(String startDate) { | |
176 | this .startDate = startDa te; | |
177 | } | |
178 | ||
179 | pu blic Strin g getEndDa te() { | |
180 | retu rn endDate ; | |
181 | } | |
182 | ||
183 | pu blic void setEndDate (String en dDate) { | |
184 | this .endDate = endDate; | |
185 | } | |
186 | ||
187 | /* * | |
188 | * @return t he archive | |
189 | * / | |
190 | pu blic boole an isArchi ve() { | |
191 | retu rn archive ; | |
192 | } | |
193 | ||
194 | /* * | |
195 | * @param ar chive | |
196 | * the arch ive to set | |
197 | * / | |
198 | pu blic void setArchive (boolean a rchive) { | |
199 | this .archive = archive; | |
200 | } | |
201 | ||
202 | /* * | |
203 | * @return t he level | |
204 | * / | |
205 | pu blic Strin g getLevel () { | |
206 | retu rn level; | |
207 | } | |
208 | ||
209 | /* * | |
210 | * @param le vel | |
211 | * the leve l to set | |
212 | * / | |
213 | pu blic void setLevel(S tring leve l) { | |
214 | this .level = l evel; | |
215 | } | |
216 | ||
217 | /* | |
218 | * (non-Java doc) | |
219 | * | |
220 | * @see java .lang.Obje ct#toStrin g() | |
221 | * / | |
222 | @O verride | |
223 | pu blic Strin g toString () { | |
224 | Stri ngBuilder builder = new String Builder(); | |
225 | buil der.append ("CodeAndM odifierReq uest [cd=" ); | |
226 | buil der.append (cd); | |
227 | buil der.append (", stcCd= "); | |
228 | buil der.append (stcCd); | |
229 | buil der.append (", stcCdD esc="); | |
230 | buil der.append (stcCdDesc ); | |
231 | buil der.append (", startD ate="); | |
232 | buil der.append (startDate ); | |
233 | buil der.append (", endDat e="); | |
234 | buil der.append (endDate); | |
235 | buil der.append (", flag=" ); | |
236 | buil der.append (flag); | |
237 | buil der.append (", archiv e="); | |
238 | buil der.append (archive); | |
239 | buil der.append (", loincT ype="); | |
240 | buil der.append (level); | |
241 | buil der.append ("]"); | |
242 | retu rn builder .toString( ); | |
243 | } | |
244 | ||
245 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.