Produced by Araxis Merge on 10/3/2017 11:15:33 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_0\webservice | Vitals.java | Tue Dec 15 14:05:18 2015 UTC |
| 2 | ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_0\webservice | Vitals.java | Mon Oct 2 19:52:19 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 450 |
| 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 | package go v.va.med.j meadows_2_ 3_0.webser vice; | |
| 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 vitals co mplex 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="vital s"> | |
| 18 | * <c omplexCont ent> | |
| 19 | * <extens ion base=" {http://we bservice.v ds. URL /}dataBean "> | |
| 20 | * & lt;sequenc e> | |
| 21 | * <eleme nt name="d ateTimeTak en" type=" {http://ww w.w3.org/2 001/XMLSch ema}dateTi me" minOcc urs="0"/> | |
| 22 | * <eleme nt name="q ualifiers" type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/> | |
| 23 | * <eleme nt name="r ate" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
| 24 | * <eleme nt name="u nits" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0"/> | |
| 25 | * <eleme nt name="u nitsCode" type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/> | |
| 26 | * <eleme nt name="v italType" type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/> | |
| 27 | * <eleme nt name="v italsIEN" type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/> | |
| 28 | * & lt;/sequen ce> | |
| 29 | * < ;/extensio n> | |
| 30 | * </ complexCon tent> | |
| 31 | * </co mplexType> | |
| 32 | * </pre> | |
| 33 | * | |
| 34 | * | |
| 35 | */ | |
| 36 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 37 | @XmlType(n ame = "vit als", name space = "h ttp://webs ervice.vds . URL /", propOr der = { | |
| 38 | "dateT imeTaken", | |
| 39 | "quali fiers", | |
| 40 | "rate" , | |
| 41 | "units ", | |
| 42 | "units Code", | |
| 43 | "vital Type", | |
| 44 | "vital sIEN" | |
| 45 | }) | |
| 46 | public cla ss Vitals | |
| 47 | extend s DataBean | |
| 48 | { | |
| 49 | ||
| 50 | @XmlSc hemaType(n ame = "dat eTime") | |
| 51 | protec ted XMLGre gorianCale ndar dateT imeTaken; | |
| 52 | protec ted String qualifier s; | |
| 53 | protec ted String rate; | |
| 54 | protec ted String units; | |
| 55 | protec ted String unitsCode ; | |
| 56 | protec ted String vitalType ; | |
| 57 | protec ted String vitalsIEN ; | |
| 58 | ||
| 59 | /** | |
| 60 | * Get s the valu e of the d ateTimeTak en propert y. | |
| 61 | * | |
| 62 | * @re turn | |
| 63 | * possible object is | |
| 64 | * {@link XM LGregorian Calendar } | |
| 65 | * | |
| 66 | */ | |
| 67 | public XMLGregor ianCalenda r getDateT imeTaken() { | |
| 68 | re turn dateT imeTaken; | |
| 69 | } | |
| 70 | ||
| 71 | /** | |
| 72 | * Set s the valu e of the d ateTimeTak en propert y. | |
| 73 | * | |
| 74 | * @pa ram value | |
| 75 | * allowed o bject is | |
| 76 | * {@link XM LGregorian Calendar } | |
| 77 | * | |
| 78 | */ | |
| 79 | public void setD ateTimeTak en(XMLGreg orianCalen dar value) { | |
| 80 | th is.dateTim eTaken = v alue; | |
| 81 | } | |
| 82 | ||
| 83 | /** | |
| 84 | * Get s the valu e of the q ualifiers property. | |
| 85 | * | |
| 86 | * @re turn | |
| 87 | * possible object is | |
| 88 | * {@link St ring } | |
| 89 | * | |
| 90 | */ | |
| 91 | public String ge tQualifier s() { | |
| 92 | re turn quali fiers; | |
| 93 | } | |
| 94 | ||
| 95 | /** | |
| 96 | * Set s the valu e of the q ualifiers property. | |
| 97 | * | |
| 98 | * @pa ram value | |
| 99 | * allowed o bject is | |
| 100 | * {@link St ring } | |
| 101 | * | |
| 102 | */ | |
| 103 | public void setQ ualifiers( String val ue) { | |
| 104 | th is.qualifi ers = valu e; | |
| 105 | } | |
| 106 | ||
| 107 | /** | |
| 108 | * Get s the valu e of the r ate proper ty. | |
| 109 | * | |
| 110 | * @re turn | |
| 111 | * possible object is | |
| 112 | * {@link St ring } | |
| 113 | * | |
| 114 | */ | |
| 115 | public String ge tRate() { | |
| 116 | re turn rate; | |
| 117 | } | |
| 118 | ||
| 119 | /** | |
| 120 | * Set s the valu e of the r ate proper ty. | |
| 121 | * | |
| 122 | * @pa ram value | |
| 123 | * allowed o bject is | |
| 124 | * {@link St ring } | |
| 125 | * | |
| 126 | */ | |
| 127 | public void setR ate(String value) { | |
| 128 | th is.rate = value; | |
| 129 | } | |
| 130 | ||
| 131 | /** | |
| 132 | * Get s the valu e of the u nits prope rty. | |
| 133 | * | |
| 134 | * @re turn | |
| 135 | * possible object is | |
| 136 | * {@link St ring } | |
| 137 | * | |
| 138 | */ | |
| 139 | public String ge tUnits() { | |
| 140 | re turn units ; | |
| 141 | } | |
| 142 | ||
| 143 | /** | |
| 144 | * Set s the valu e of the u nits prope rty. | |
| 145 | * | |
| 146 | * @pa ram value | |
| 147 | * allowed o bject is | |
| 148 | * {@link St ring } | |
| 149 | * | |
| 150 | */ | |
| 151 | public void setU nits(Strin g value) { | |
| 152 | th is.units = value; | |
| 153 | } | |
| 154 | ||
| 155 | /** | |
| 156 | * Get s the valu e of the u nitsCode p roperty. | |
| 157 | * | |
| 158 | * @re turn | |
| 159 | * possible object is | |
| 160 | * {@link St ring } | |
| 161 | * | |
| 162 | */ | |
| 163 | public String ge tUnitsCode () { | |
| 164 | re turn units Code; | |
| 165 | } | |
| 166 | ||
| 167 | /** | |
| 168 | * Set s the valu e of the u nitsCode p roperty. | |
| 169 | * | |
| 170 | * @pa ram value | |
| 171 | * allowed o bject is | |
| 172 | * {@link St ring } | |
| 173 | * | |
| 174 | */ | |
| 175 | public void setU nitsCode(S tring valu e) { | |
| 176 | th is.unitsCo de = value ; | |
| 177 | } | |
| 178 | ||
| 179 | /** | |
| 180 | * Get s the valu e of the v italType p roperty. | |
| 181 | * | |
| 182 | * @re turn | |
| 183 | * possible object is | |
| 184 | * {@link St ring } | |
| 185 | * | |
| 186 | */ | |
| 187 | public String ge tVitalType () { | |
| 188 | re turn vital Type; | |
| 189 | } | |
| 190 | ||
| 191 | /** | |
| 192 | * Set s the valu e of the v italType p roperty. | |
| 193 | * | |
| 194 | * @pa ram value | |
| 195 | * allowed o bject is | |
| 196 | * {@link St ring } | |
| 197 | * | |
| 198 | */ | |
| 199 | public void setV italType(S tring valu e) { | |
| 200 | th is.vitalTy pe = value ; | |
| 201 | } | |
| 202 | ||
| 203 | /** | |
| 204 | * Get s the valu e of the v italsIEN p roperty. | |
| 205 | * | |
| 206 | * @re turn | |
| 207 | * possible object is | |
| 208 | * {@link St ring } | |
| 209 | * | |
| 210 | */ | |
| 211 | public String ge tVitalsIEN () { | |
| 212 | re turn vital sIEN; | |
| 213 | } | |
| 214 | ||
| 215 | /** | |
| 216 | * Set s the valu e of the v italsIEN p roperty. | |
| 217 | * | |
| 218 | * @pa ram value | |
| 219 | * allowed o bject is | |
| 220 | * {@link St ring } | |
| 221 | * | |
| 222 | */ | |
| 223 | public void setV italsIEN(S tring valu e) { | |
| 224 | th is.vitalsI EN = value ; | |
| 225 | } | |
| 226 | ||
| 227 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.