Produced by Araxis Merge on 1/17/2019 10:54:32 AM Central Standard 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 | v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\med\via\service | InpatientStayTO.java | Wed Jan 16 16:06:32 2019 UTC |
| 2 | v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\med\via\service | InpatientStayTO.java | Wed Jan 16 20:17:28 2019 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 6 | 632 |
| Changed | 5 | 12 |
| 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 | package go v.va.med.v ia.service ; | |
| 3 | ||
| 4 | import jav a.util.Arr ayList; | |
| 5 | import jav a.util.Lis t; | |
| 6 | import jav ax.xml.bin d.annotati on.XmlAcce ssType; | |
| 7 | import jav ax.xml.bin d.annotati on.XmlAcce ssorType; | |
| 8 | import jav ax.xml.bin d.annotati on.XmlType ; | |
| 9 | ||
| 10 | ||
| 11 | /** | |
| 12 | * <p>Java class for inpatient StayTO com plex type. | |
| 13 | * | |
| 14 | * <p>The following schema fra gment spec ifies the expected c ontent con tained wit hin this c lass. | |
| 15 | * | |
| 16 | * <pre> | |
| 17 | * <com plexType n ame="inpat ientStayTO "> | |
| 18 | * <c omplexCont ent> | |
| 19 | * <extens ion base=" {http:// DNS . URL /}abstract TO"> | |
| 20 | * & lt;sequenc e> | |
| 21 | * <elemen t name="pa tient" typ e="{http:/ / DNS . URL /}patientT O" minOccu rs="0" for m="unquali fied"/> | |
| 22 | * <elemen t name="lo cation" ty pe="{http: // DNS . URL /}hospital LocationTO " minOccur s="0" form ="unqualif ied"/> | |
| 23 | * <eleme nt name="a dmitTimest amp" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0" for m="unquali fied"/> | |
| 24 | * <eleme nt name="d ischargeTi mestamp" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" form="unq ualified"/ > | |
| 25 | * <elemen t name="di schargeDia gnoses" ty pe="{http: // DNS . URL /}discharg eDiagnoses TO" minOcc urs="0" fo rm="unqual ified"/> ; | |
| 26 | * <eleme nt name="t ype" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0" for m="unquali fied"/> | |
| 27 | * <eleme nt name="a dts" minOc curs="0" f orm="unqua lified"> ; | |
| 28 | * <com plexType&g t; | |
| 29 | * <c omplexCont ent> | |
| 30 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |
| 31 | * & lt;sequenc e> | |
| 32 | * <elemen t name="ad tTO" type= "{http:// DNS . URL /}adtTO" m axOccurs=" unbounded" minOccurs ="0" form= "unqualifi ed"/> | |
| 33 | * & lt;/sequen ce> | |
| 34 | * < ;/restrict ion> | |
| 35 | * </ complexCon tent> | |
| 36 | * </co mplexType& gt; | |
| 37 | * </elem ent> | |
| 38 | * <eleme nt name="m ovementChe ckinId" ty pe="{http: //www.w3.o rg/2001/XM LSchema}st ring" minO ccurs="0" form="unqu alified"/& gt; | |
| 39 | * & lt;/sequen ce> | |
| 40 | * < ;/extensio n> | |
| 41 | * </ complexCon tent> | |
| 42 | * </co mplexType& gt; | |
| 43 | * </pre> | |
| 44 | * | |
| 45 | * | |
| 46 | */ | |
| 47 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 48 | @XmlType(n ame = "inp atientStay TO", propO rder = { | |
| 49 | "patie nt", | |
| 50 | "locat ion", | |
| 51 | "admit Timestamp" , | |
| 52 | "disch argeTimest amp", | |
| 53 | "disch argeDiagno ses", | |
| 54 | "type" , | |
| 55 | "adts" , | |
| 56 | "movem entCheckin Id" | |
| 57 | }) | |
| 58 | public cla ss Inpatie ntStayTO | |
| 59 | extend s Abstract TO | |
| 60 | { | |
| 61 | ||
| 62 | protec ted Patien tTO patien t; | |
| 63 | protec ted Hospit alLocation TO locatio n; | |
| 64 | protec ted String admitTime stamp; | |
| 65 | protec ted String discharge Timestamp; | |
| 66 | protec ted Discha rgeDiagnos esTO disch argeDiagno ses; | |
| 67 | protec ted String type; | |
| 68 | protec ted Inpati entStayTO. Adts adts; | |
| 69 | protec ted String movementC heckinId; | |
| 70 | ||
| 71 | /** | |
| 72 | * Get s the valu e of the p atient pro perty. | |
| 73 | * | |
| 74 | * @re turn | |
| 75 | * possible object is | |
| 76 | * {@link Pa tientTO } | |
| 77 | * | |
| 78 | */ | |
| 79 | public PatientTO getPatien t() { | |
| 80 | re turn patie nt; | |
| 81 | } | |
| 82 | ||
| 83 | /** | |
| 84 | * Set s the valu e of the p atient pro perty. | |
| 85 | * | |
| 86 | * @pa ram value | |
| 87 | * allowed o bject is | |
| 88 | * {@link Pa tientTO } | |
| 89 | * | |
| 90 | */ | |
| 91 | public void setP atient(Pat ientTO val ue) { | |
| 92 | th is.patient = value; | |
| 93 | } | |
| 94 | ||
| 95 | /** | |
| 96 | * Get s the valu e of the l ocation pr operty. | |
| 97 | * | |
| 98 | * @re turn | |
| 99 | * possible object is | |
| 100 | * {@link Ho spitalLoca tionTO } | |
| 101 | * | |
| 102 | */ | |
| 103 | public HospitalL ocationTO getLocatio n() { | |
| 104 | re turn locat ion; | |
| 105 | } | |
| 106 | ||
| 107 | /** | |
| 108 | * Set s the valu e of the l ocation pr operty. | |
| 109 | * | |
| 110 | * @pa ram value | |
| 111 | * allowed o bject is | |
| 112 | * {@link Ho spitalLoca tionTO } | |
| 113 | * | |
| 114 | */ | |
| 115 | public void setL ocation(Ho spitalLoca tionTO val ue) { | |
| 116 | th is.locatio n = value; | |
| 117 | } | |
| 118 | ||
| 119 | /** | |
| 120 | * Get s the valu e of the a dmitTimest amp proper ty. | |
| 121 | * | |
| 122 | * @re turn | |
| 123 | * possible object is | |
| 124 | * {@link St ring } | |
| 125 | * | |
| 126 | */ | |
| 127 | public String ge tAdmitTime stamp() { | |
| 128 | re turn admit Timestamp; | |
| 129 | } | |
| 130 | ||
| 131 | /** | |
| 132 | * Set s the valu e of the a dmitTimest amp proper ty. | |
| 133 | * | |
| 134 | * @pa ram value | |
| 135 | * allowed o bject is | |
| 136 | * {@link St ring } | |
| 137 | * | |
| 138 | */ | |
| 139 | public void setA dmitTimest amp(String value) { | |
| 140 | th is.admitTi mestamp = value; | |
| 141 | } | |
| 142 | ||
| 143 | /** | |
| 144 | * Get s the valu e of the d ischargeTi mestamp pr operty. | |
| 145 | * | |
| 146 | * @re turn | |
| 147 | * possible object is | |
| 148 | * {@link St ring } | |
| 149 | * | |
| 150 | */ | |
| 151 | public String ge tDischarge Timestamp( ) { | |
| 152 | re turn disch argeTimest amp; | |
| 153 | } | |
| 154 | ||
| 155 | /** | |
| 156 | * Set s the valu e of the d ischargeTi mestamp pr operty. | |
| 157 | * | |
| 158 | * @pa ram value | |
| 159 | * allowed o bject is | |
| 160 | * {@link St ring } | |
| 161 | * | |
| 162 | */ | |
| 163 | public void setD ischargeTi mestamp(St ring value ) { | |
| 164 | th is.dischar geTimestam p = value; | |
| 165 | } | |
| 166 | ||
| 167 | /** | |
| 168 | * Get s the valu e of the d ischargeDi agnoses pr operty. | |
| 169 | * | |
| 170 | * @re turn | |
| 171 | * possible object is | |
| 172 | * {@link Di schargeDia gnosesTO } | |
| 173 | * | |
| 174 | */ | |
| 175 | public Discharge DiagnosesT O getDisch argeDiagno ses() { | |
| 176 | re turn disch argeDiagno ses; | |
| 177 | } | |
| 178 | ||
| 179 | /** | |
| 180 | * Set s the valu e of the d ischargeDi agnoses pr operty. | |
| 181 | * | |
| 182 | * @pa ram value | |
| 183 | * allowed o bject is | |
| 184 | * {@link Di schargeDia gnosesTO } | |
| 185 | * | |
| 186 | */ | |
| 187 | public void setD ischargeDi agnoses(Di schargeDia gnosesTO v alue) { | |
| 188 | th is.dischar geDiagnose s = value; | |
| 189 | } | |
| 190 | ||
| 191 | /** | |
| 192 | * Get s the valu e of the t ype proper ty. | |
| 193 | * | |
| 194 | * @re turn | |
| 195 | * possible object is | |
| 196 | * {@link St ring } | |
| 197 | * | |
| 198 | */ | |
| 199 | public String ge tType() { | |
| 200 | re turn type; | |
| 201 | } | |
| 202 | ||
| 203 | /** | |
| 204 | * Set s the valu e of the t ype proper ty. | |
| 205 | * | |
| 206 | * @pa ram value | |
| 207 | * allowed o bject is | |
| 208 | * {@link St ring } | |
| 209 | * | |
| 210 | */ | |
| 211 | public void setT ype(String value) { | |
| 212 | th is.type = value; | |
| 213 | } | |
| 214 | ||
| 215 | /** | |
| 216 | * Get s the valu e of the a dts proper ty. | |
| 217 | * | |
| 218 | * @re turn | |
| 219 | * possible object is | |
| 220 | * {@link In patientSta yTO.Adts } | |
| 221 | * | |
| 222 | */ | |
| 223 | public Inpatient StayTO.Adt s getAdts( ) { | |
| 224 | re turn adts; | |
| 225 | } | |
| 226 | ||
| 227 | /** | |
| 228 | * Set s the valu e of the a dts proper ty. | |
| 229 | * | |
| 230 | * @pa ram value | |
| 231 | * allowed o bject is | |
| 232 | * {@link In patientSta yTO.Adts } | |
| 233 | * | |
| 234 | */ | |
| 235 | public void setA dts(Inpati entStayTO. Adts value ) { | |
| 236 | th is.adts = value; | |
| 237 | } | |
| 238 | ||
| 239 | /** | |
| 240 | * Get s the valu e of the m ovementChe ckinId pro perty. | |
| 241 | * | |
| 242 | * @re turn | |
| 243 | * possible object is | |
| 244 | * {@link St ring } | |
| 245 | * | |
| 246 | */ | |
| 247 | public String ge tMovementC heckinId() { | |
| 248 | re turn movem entCheckin Id; | |
| 249 | } | |
| 250 | ||
| 251 | /** | |
| 252 | * Set s the valu e of the m ovementChe ckinId pro perty. | |
| 253 | * | |
| 254 | * @pa ram value | |
| 255 | * allowed o bject is | |
| 256 | * {@link St ring } | |
| 257 | * | |
| 258 | */ | |
| 259 | public void setM ovementChe ckinId(Str ing value) { | |
| 260 | th is.movemen tCheckinId = value; | |
| 261 | } | |
| 262 | ||
| 263 | ||
| 264 | /** | |
| 265 | * <p> Java class for anony mous compl ex type. | |
| 266 | * | |
| 267 | * <p> The follow ing schema fragment specifies the expect ed content contained within th is class. | |
| 268 | * | |
| 269 | * <pr e> | |
| 270 | * < ;complexTy pe> | |
| 271 | * & lt;complex Content> ; | |
| 272 | * <restr iction bas e="{http:/ /www.w3.or g/2001/XML Schema}any Type"> | |
| 273 | * <seq uence> | |
| 274 | * <elemen t name="ad tTO" type= "{http:// DNS . URL /}adtTO" m axOccurs=" unbounded" minOccurs ="0" form= "unqualifi ed"/> | |
| 275 | * </se quence> | |
| 276 | * </rest riction> ; | |
| 277 | * & lt;/comple xContent&g t; | |
| 278 | * < ;/complexT ype> | |
| 279 | * </p re> | |
| 280 | * | |
| 281 | * | |
| 282 | */ | |
| 283 | @XmlAc cessorType (XmlAccess Type.FIELD ) | |
| 284 | @XmlTy pe(name = "", propOr der = { | |
| 285 | "a dtTO" | |
| 286 | }) | |
| 287 | public static cl ass Adts { | |
| 288 | ||
| 289 | pr otected Li st<AdtTO> adtTO; | |
| 290 | ||
| 291 | /* * | |
| 292 | * Gets the value of t he adtTO p roperty. | |
| 293 | * | |
| 294 | * <p> | |
| 295 | * This acce ssor metho d returns a referenc e to the l ive list, | |
| 296 | * not a sna pshot. The refore any modificat ion you ma ke to the | |
| 297 | * returned list will be present inside th e JAXB obj ect. | |
| 298 | * This is w hy there i s not a <C ODE>set</C ODE> metho d for the adtTO prop erty. | |
| 299 | * | |
| 300 | * <p> | |
| 301 | * For examp le, to add a new ite m, do as f ollows: | |
| 302 | * <pre> | |
| 303 | * getAdt TO().add(n ewItem); | |
| 304 | * </pre> | |
| 305 | * | |
| 306 | * | |
| 307 | * <p> | |
| 308 | * Objects o f the foll owing type (s) are al lowed in t he list | |
| 309 | * {@link Ad tTO } | |
| 310 | * | |
| 311 | * | |
| 312 | * / | |
| 313 | pu blic List< AdtTO> get AdtTO() { | |
| 314 | if (adtT O == null) { | |
| 315 | adtT O = new Ar rayList<Ad tTO>(); | |
| 316 | } | |
| 317 | return t his.adtTO; | |
| 318 | } | |
| 319 | ||
| 320 | } | |
| 321 | ||
| 322 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.