Produced by Araxis Merge on 10/3/2017 11:15:42 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 | ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_3_0_2\webservice | Order.java | Thu Apr 28 21:02:40 2016 UTC |
| 2 | ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_3_0_2\webservice | Order.java | Mon Oct 2 19:55:30 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 4 | 668 |
| Changed | 3 | 6 |
| 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.j meadows_2_ 3_3_0_2.we bservice; | |
| 3 | ||
| 4 | import jav ax.xml.bin d.annotati on.XmlAcce ssType; | |
| 5 | import jav ax.xml.bin d.annotati on.XmlAcce ssorType; | |
| 6 | import jav ax.xml.bin d.annotati on.XmlSche maType; | |
| 7 | import jav ax.xml.bin d.annotati on.XmlType ; | |
| 8 | import jav ax.xml.dat atype.XMLG regorianCa lendar; | |
| 9 | ||
| 10 | ||
| 11 | /** | |
| 12 | * <p>Java class for order 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="order "> | |
| 18 | * <c omplexCont ent> | |
| 19 | * <extens ion base=" {http://we bservice.v ds. URL /}dataBean "> | |
| 20 | * & lt;sequenc e> | |
| 21 | * <eleme nt name="c ompletedDa te" type=" {http://ww w.w3.org/2 001/XMLSch ema}dateTi me" minOcc urs="0"/> | |
| 22 | * <eleme nt name="d escription " type="{h ttp://www. w3.org/200 1/XMLSchem a}string" minOccurs= "0"/> | |
| 23 | * <eleme nt name="e nteredDate " type="{h ttp://www. w3.org/200 1/XMLSchem a}dateTime " minOccur s="0"/> | |
| 24 | * <eleme nt name="o rderDate" type="{htt p://www.w3 .org/2001/ XMLSchema} dateTime" minOccurs= "0"/> | |
| 25 | * <eleme nt name="o rderDetail " type="{h ttp://www. w3.org/200 1/XMLSchem a}string" minOccurs= "0"/> | |
| 26 | * <eleme nt name="o rderResult " type="{h ttp://www. w3.org/200 1/XMLSchem a}string" minOccurs= "0"/> | |
| 27 | * <eleme nt name="o rderid" ty pe="{http: //www.w3.o rg/2001/XM LSchema}st ring" minO ccurs="0"/ > | |
| 28 | * <elemen t name="or deringProv ider" type ="{http:// webservice .vds. URL /}provider " minOccur s="0"/> | |
| 29 | * <eleme nt name="p riority" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" /> | |
| 30 | * <eleme nt name="s tatus" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/> | |
| 31 | * <eleme nt name="t ype" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
| 32 | * & lt;/sequen ce> | |
| 33 | * < ;/extensio n> | |
| 34 | * </ complexCon tent> | |
| 35 | * </co mplexType> | |
| 36 | * </pre> | |
| 37 | * | |
| 38 | * | |
| 39 | */ | |
| 40 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 41 | @XmlType(n ame = "ord er", names pace = "ht tp://webse rvice.vds. URL /", propOr der = { | |
| 42 | "compl etedDate", | |
| 43 | "descr iption", | |
| 44 | "enter edDate", | |
| 45 | "order Date", | |
| 46 | "order Detail", | |
| 47 | "order Result", | |
| 48 | "order id", | |
| 49 | "order ingProvide r", | |
| 50 | "prior ity", | |
| 51 | "statu s", | |
| 52 | "type" | |
| 53 | }) | |
| 54 | public cla ss Order | |
| 55 | extend s DataBean | |
| 56 | { | |
| 57 | ||
| 58 | @XmlSc hemaType(n ame = "dat eTime") | |
| 59 | protec ted XMLGre gorianCale ndar compl etedDate; | |
| 60 | protec ted String descripti on; | |
| 61 | @XmlSc hemaType(n ame = "dat eTime") | |
| 62 | protec ted XMLGre gorianCale ndar enter edDate; | |
| 63 | @XmlSc hemaType(n ame = "dat eTime") | |
| 64 | protec ted XMLGre gorianCale ndar order Date; | |
| 65 | protec ted String orderDeta il; | |
| 66 | protec ted String orderResu lt; | |
| 67 | protec ted String orderid; | |
| 68 | protec ted Provid er orderin gProvider; | |
| 69 | protec ted String priority; | |
| 70 | protec ted String status; | |
| 71 | protec ted String type; | |
| 72 | ||
| 73 | /** | |
| 74 | * Get s the valu e of the c ompletedDa te propert y. | |
| 75 | * | |
| 76 | * @re turn | |
| 77 | * possible object is | |
| 78 | * {@link XM LGregorian Calendar } | |
| 79 | * | |
| 80 | */ | |
| 81 | public XMLGregor ianCalenda r getCompl etedDate() { | |
| 82 | re turn compl etedDate; | |
| 83 | } | |
| 84 | ||
| 85 | /** | |
| 86 | * Set s the valu e of the c ompletedDa te propert y. | |
| 87 | * | |
| 88 | * @pa ram value | |
| 89 | * allowed o bject is | |
| 90 | * {@link XM LGregorian Calendar } | |
| 91 | * | |
| 92 | */ | |
| 93 | public void setC ompletedDa te(XMLGreg orianCalen dar value) { | |
| 94 | th is.complet edDate = v alue; | |
| 95 | } | |
| 96 | ||
| 97 | /** | |
| 98 | * Get s the valu e of the d escription property. | |
| 99 | * | |
| 100 | * @re turn | |
| 101 | * possible object is | |
| 102 | * {@link St ring } | |
| 103 | * | |
| 104 | */ | |
| 105 | public String ge tDescripti on() { | |
| 106 | re turn descr iption; | |
| 107 | } | |
| 108 | ||
| 109 | /** | |
| 110 | * Set s the valu e of the d escription property. | |
| 111 | * | |
| 112 | * @pa ram value | |
| 113 | * allowed o bject is | |
| 114 | * {@link St ring } | |
| 115 | * | |
| 116 | */ | |
| 117 | public void setD escription (String va lue) { | |
| 118 | th is.descrip tion = val ue; | |
| 119 | } | |
| 120 | ||
| 121 | /** | |
| 122 | * Get s the valu e of the e nteredDate property. | |
| 123 | * | |
| 124 | * @re turn | |
| 125 | * possible object is | |
| 126 | * {@link XM LGregorian Calendar } | |
| 127 | * | |
| 128 | */ | |
| 129 | public XMLGregor ianCalenda r getEnter edDate() { | |
| 130 | re turn enter edDate; | |
| 131 | } | |
| 132 | ||
| 133 | /** | |
| 134 | * Set s the valu e of the e nteredDate property. | |
| 135 | * | |
| 136 | * @pa ram value | |
| 137 | * allowed o bject is | |
| 138 | * {@link XM LGregorian Calendar } | |
| 139 | * | |
| 140 | */ | |
| 141 | public void setE nteredDate (XMLGregor ianCalenda r value) { | |
| 142 | th is.entered Date = val ue; | |
| 143 | } | |
| 144 | ||
| 145 | /** | |
| 146 | * Get s the valu e of the o rderDate p roperty. | |
| 147 | * | |
| 148 | * @re turn | |
| 149 | * possible object is | |
| 150 | * {@link XM LGregorian Calendar } | |
| 151 | * | |
| 152 | */ | |
| 153 | public XMLGregor ianCalenda r getOrder Date() { | |
| 154 | re turn order Date; | |
| 155 | } | |
| 156 | ||
| 157 | /** | |
| 158 | * Set s the valu e of the o rderDate p roperty. | |
| 159 | * | |
| 160 | * @pa ram value | |
| 161 | * allowed o bject is | |
| 162 | * {@link XM LGregorian Calendar } | |
| 163 | * | |
| 164 | */ | |
| 165 | public void setO rderDate(X MLGregoria nCalendar value) { | |
| 166 | th is.orderDa te = value ; | |
| 167 | } | |
| 168 | ||
| 169 | /** | |
| 170 | * Get s the valu e of the o rderDetail property. | |
| 171 | * | |
| 172 | * @re turn | |
| 173 | * possible object is | |
| 174 | * {@link St ring } | |
| 175 | * | |
| 176 | */ | |
| 177 | public String ge tOrderDeta il() { | |
| 178 | re turn order Detail; | |
| 179 | } | |
| 180 | ||
| 181 | /** | |
| 182 | * Set s the valu e of the o rderDetail property. | |
| 183 | * | |
| 184 | * @pa ram value | |
| 185 | * allowed o bject is | |
| 186 | * {@link St ring } | |
| 187 | * | |
| 188 | */ | |
| 189 | public void setO rderDetail (String va lue) { | |
| 190 | th is.orderDe tail = val ue; | |
| 191 | } | |
| 192 | ||
| 193 | /** | |
| 194 | * Get s the valu e of the o rderResult property. | |
| 195 | * | |
| 196 | * @re turn | |
| 197 | * possible object is | |
| 198 | * {@link St ring } | |
| 199 | * | |
| 200 | */ | |
| 201 | public String ge tOrderResu lt() { | |
| 202 | re turn order Result; | |
| 203 | } | |
| 204 | ||
| 205 | /** | |
| 206 | * Set s the valu e of the o rderResult property. | |
| 207 | * | |
| 208 | * @pa ram value | |
| 209 | * allowed o bject is | |
| 210 | * {@link St ring } | |
| 211 | * | |
| 212 | */ | |
| 213 | public void setO rderResult (String va lue) { | |
| 214 | th is.orderRe sult = val ue; | |
| 215 | } | |
| 216 | ||
| 217 | /** | |
| 218 | * Get s the valu e of the o rderid pro perty. | |
| 219 | * | |
| 220 | * @re turn | |
| 221 | * possible object is | |
| 222 | * {@link St ring } | |
| 223 | * | |
| 224 | */ | |
| 225 | public String ge tOrderid() { | |
| 226 | re turn order id; | |
| 227 | } | |
| 228 | ||
| 229 | /** | |
| 230 | * Set s the valu e of the o rderid pro perty. | |
| 231 | * | |
| 232 | * @pa ram value | |
| 233 | * allowed o bject is | |
| 234 | * {@link St ring } | |
| 235 | * | |
| 236 | */ | |
| 237 | public void setO rderid(Str ing value) { | |
| 238 | th is.orderid = value; | |
| 239 | } | |
| 240 | ||
| 241 | /** | |
| 242 | * Get s the valu e of the o rderingPro vider prop erty. | |
| 243 | * | |
| 244 | * @re turn | |
| 245 | * possible object is | |
| 246 | * {@link Pr ovider } | |
| 247 | * | |
| 248 | */ | |
| 249 | public Provider getOrderin gProvider( ) { | |
| 250 | re turn order ingProvide r; | |
| 251 | } | |
| 252 | ||
| 253 | /** | |
| 254 | * Set s the valu e of the o rderingPro vider prop erty. | |
| 255 | * | |
| 256 | * @pa ram value | |
| 257 | * allowed o bject is | |
| 258 | * {@link Pr ovider } | |
| 259 | * | |
| 260 | */ | |
| 261 | public void setO rderingPro vider(Prov ider value ) { | |
| 262 | th is.orderin gProvider = value; | |
| 263 | } | |
| 264 | ||
| 265 | /** | |
| 266 | * Get s the valu e of the p riority pr operty. | |
| 267 | * | |
| 268 | * @re turn | |
| 269 | * possible object is | |
| 270 | * {@link St ring } | |
| 271 | * | |
| 272 | */ | |
| 273 | public String ge tPriority( ) { | |
| 274 | re turn prior ity; | |
| 275 | } | |
| 276 | ||
| 277 | /** | |
| 278 | * Set s the valu e of the p riority pr operty. | |
| 279 | * | |
| 280 | * @pa ram value | |
| 281 | * allowed o bject is | |
| 282 | * {@link St ring } | |
| 283 | * | |
| 284 | */ | |
| 285 | public void setP riority(St ring value ) { | |
| 286 | th is.priorit y = value; | |
| 287 | } | |
| 288 | ||
| 289 | /** | |
| 290 | * Get s the valu e of the s tatus prop erty. | |
| 291 | * | |
| 292 | * @re turn | |
| 293 | * possible object is | |
| 294 | * {@link St ring } | |
| 295 | * | |
| 296 | */ | |
| 297 | public String ge tStatus() { | |
| 298 | re turn statu s; | |
| 299 | } | |
| 300 | ||
| 301 | /** | |
| 302 | * Set s the valu e of the s tatus prop erty. | |
| 303 | * | |
| 304 | * @pa ram value | |
| 305 | * allowed o bject is | |
| 306 | * {@link St ring } | |
| 307 | * | |
| 308 | */ | |
| 309 | public void setS tatus(Stri ng value) { | |
| 310 | th is.status = value; | |
| 311 | } | |
| 312 | ||
| 313 | /** | |
| 314 | * Get s the valu e of the t ype proper ty. | |
| 315 | * | |
| 316 | * @re turn | |
| 317 | * possible object is | |
| 318 | * {@link St ring } | |
| 319 | * | |
| 320 | */ | |
| 321 | public String ge tType() { | |
| 322 | re turn type; | |
| 323 | } | |
| 324 | ||
| 325 | /** | |
| 326 | * Set s the valu e of the t ype proper ty. | |
| 327 | * | |
| 328 | * @pa ram value | |
| 329 | * allowed o bject is | |
| 330 | * {@link St ring } | |
| 331 | * | |
| 332 | */ | |
| 333 | public void setT ype(String value) { | |
| 334 | th is.type = value; | |
| 335 | } | |
| 336 | ||
| 337 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.