Produced by Araxis Merge on 10/3/2017 11:15:37 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_1\webservice | Person.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_1\webservice | Person.java | Mon Oct 2 19:53:48 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 566 |
| 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_1.webser vice; | |
| 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.XmlElem ent; | |
| 9 | import jav ax.xml.bin d.annotati on.XmlType ; | |
| 10 | ||
| 11 | ||
| 12 | /** | |
| 13 | * <p>Java class for person co mplex type . | |
| 14 | * | |
| 15 | * <p>The following schema fra gment spec ifies the expected c ontent con tained wit hin this c lass. | |
| 16 | * | |
| 17 | * <pre> | |
| 18 | * <com plexType n ame="perso n"> | |
| 19 | * <c omplexCont ent> | |
| 20 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |
| 21 | * & lt;sequenc e> | |
| 22 | * <eleme nt name="c ity" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
| 23 | * <eleme nt name="n ame" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
| 24 | * <eleme nt name="p ostalCode" type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/> | |
| 25 | * <eleme nt name="r elationshi p" type="{ http://www .w3.org/20 01/XMLSche ma}string" minOccurs ="0"/> | |
| 26 | * <eleme nt name="s tateProvin ce" type=" {http://ww w.w3.org/2 001/XMLSch ema}string " minOccur s="0"/> | |
| 27 | * <eleme nt name="s treet1" ty pe="{http: //www.w3.o rg/2001/XM LSchema}st ring" minO ccurs="0"/ > | |
| 28 | * <eleme nt name="s treet2" ty pe="{http: //www.w3.o rg/2001/XM LSchema}st ring" minO ccurs="0"/ > | |
| 29 | * <eleme nt name="s treet3" ty pe="{http: //www.w3.o rg/2001/XM LSchema}st ring" minO ccurs="0"/ > | |
| 30 | * <elemen t name="te lcoms" typ e="{http:/ /webservic e.vds. URL /}telecom" maxOccurs ="unbounde d" minOccu rs="0"/> | |
| 31 | * & lt;/sequen ce> | |
| 32 | * < ;/restrict ion> | |
| 33 | * </ complexCon tent> | |
| 34 | * </co mplexType> | |
| 35 | * </pre> | |
| 36 | * | |
| 37 | * | |
| 38 | */ | |
| 39 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 40 | @XmlType(n ame = "per son", name space = "h ttp://webs ervice.vds . URL /", propOr der = { | |
| 41 | "city" , | |
| 42 | "name" , | |
| 43 | "posta lCode", | |
| 44 | "relat ionship", | |
| 45 | "state Province", | |
| 46 | "stree t1", | |
| 47 | "stree t2", | |
| 48 | "stree t3", | |
| 49 | "telco ms" | |
| 50 | }) | |
| 51 | public cla ss Person { | |
| 52 | ||
| 53 | protec ted String city; | |
| 54 | protec ted String name; | |
| 55 | protec ted String postalCod e; | |
| 56 | protec ted String relations hip; | |
| 57 | protec ted String stateProv ince; | |
| 58 | protec ted String street1; | |
| 59 | protec ted String street2; | |
| 60 | protec ted String street3; | |
| 61 | @XmlEl ement(nill able = tru e) | |
| 62 | protec ted List<T elecom> te lcoms; | |
| 63 | ||
| 64 | /** | |
| 65 | * Get s the valu e of the c ity proper ty. | |
| 66 | * | |
| 67 | * @re turn | |
| 68 | * possible object is | |
| 69 | * {@link St ring } | |
| 70 | * | |
| 71 | */ | |
| 72 | public String ge tCity() { | |
| 73 | re turn city; | |
| 74 | } | |
| 75 | ||
| 76 | /** | |
| 77 | * Set s the valu e of the c ity proper ty. | |
| 78 | * | |
| 79 | * @pa ram value | |
| 80 | * allowed o bject is | |
| 81 | * {@link St ring } | |
| 82 | * | |
| 83 | */ | |
| 84 | public void setC ity(String value) { | |
| 85 | th is.city = value; | |
| 86 | } | |
| 87 | ||
| 88 | /** | |
| 89 | * Get s the valu e of the n ame proper ty. | |
| 90 | * | |
| 91 | * @re turn | |
| 92 | * possible object is | |
| 93 | * {@link St ring } | |
| 94 | * | |
| 95 | */ | |
| 96 | public String ge tName() { | |
| 97 | re turn name; | |
| 98 | } | |
| 99 | ||
| 100 | /** | |
| 101 | * Set s the valu e of the n ame proper ty. | |
| 102 | * | |
| 103 | * @pa ram value | |
| 104 | * allowed o bject is | |
| 105 | * {@link St ring } | |
| 106 | * | |
| 107 | */ | |
| 108 | public void setN ame(String value) { | |
| 109 | th is.name = value; | |
| 110 | } | |
| 111 | ||
| 112 | /** | |
| 113 | * Get s the valu e of the p ostalCode property. | |
| 114 | * | |
| 115 | * @re turn | |
| 116 | * possible object is | |
| 117 | * {@link St ring } | |
| 118 | * | |
| 119 | */ | |
| 120 | public String ge tPostalCod e() { | |
| 121 | re turn posta lCode; | |
| 122 | } | |
| 123 | ||
| 124 | /** | |
| 125 | * Set s the valu e of the p ostalCode property. | |
| 126 | * | |
| 127 | * @pa ram value | |
| 128 | * allowed o bject is | |
| 129 | * {@link St ring } | |
| 130 | * | |
| 131 | */ | |
| 132 | public void setP ostalCode( String val ue) { | |
| 133 | th is.postalC ode = valu e; | |
| 134 | } | |
| 135 | ||
| 136 | /** | |
| 137 | * Get s the valu e of the r elationshi p property . | |
| 138 | * | |
| 139 | * @re turn | |
| 140 | * possible object is | |
| 141 | * {@link St ring } | |
| 142 | * | |
| 143 | */ | |
| 144 | public String ge tRelations hip() { | |
| 145 | re turn relat ionship; | |
| 146 | } | |
| 147 | ||
| 148 | /** | |
| 149 | * Set s the valu e of the r elationshi p property . | |
| 150 | * | |
| 151 | * @pa ram value | |
| 152 | * allowed o bject is | |
| 153 | * {@link St ring } | |
| 154 | * | |
| 155 | */ | |
| 156 | public void setR elationshi p(String v alue) { | |
| 157 | th is.relatio nship = va lue; | |
| 158 | } | |
| 159 | ||
| 160 | /** | |
| 161 | * Get s the valu e of the s tateProvin ce propert y. | |
| 162 | * | |
| 163 | * @re turn | |
| 164 | * possible object is | |
| 165 | * {@link St ring } | |
| 166 | * | |
| 167 | */ | |
| 168 | public String ge tStateProv ince() { | |
| 169 | re turn state Province; | |
| 170 | } | |
| 171 | ||
| 172 | /** | |
| 173 | * Set s the valu e of the s tateProvin ce propert y. | |
| 174 | * | |
| 175 | * @pa ram value | |
| 176 | * allowed o bject is | |
| 177 | * {@link St ring } | |
| 178 | * | |
| 179 | */ | |
| 180 | public void setS tateProvin ce(String value) { | |
| 181 | th is.statePr ovince = v alue; | |
| 182 | } | |
| 183 | ||
| 184 | /** | |
| 185 | * Get s the valu e of the s treet1 pro perty. | |
| 186 | * | |
| 187 | * @re turn | |
| 188 | * possible object is | |
| 189 | * {@link St ring } | |
| 190 | * | |
| 191 | */ | |
| 192 | public String ge tStreet1() { | |
| 193 | re turn stree t1; | |
| 194 | } | |
| 195 | ||
| 196 | /** | |
| 197 | * Set s the valu e of the s treet1 pro perty. | |
| 198 | * | |
| 199 | * @pa ram value | |
| 200 | * allowed o bject is | |
| 201 | * {@link St ring } | |
| 202 | * | |
| 203 | */ | |
| 204 | public void setS treet1(Str ing value) { | |
| 205 | th is.street1 = value; | |
| 206 | } | |
| 207 | ||
| 208 | /** | |
| 209 | * Get s the valu e of the s treet2 pro perty. | |
| 210 | * | |
| 211 | * @re turn | |
| 212 | * possible object is | |
| 213 | * {@link St ring } | |
| 214 | * | |
| 215 | */ | |
| 216 | public String ge tStreet2() { | |
| 217 | re turn stree t2; | |
| 218 | } | |
| 219 | ||
| 220 | /** | |
| 221 | * Set s the valu e of the s treet2 pro perty. | |
| 222 | * | |
| 223 | * @pa ram value | |
| 224 | * allowed o bject is | |
| 225 | * {@link St ring } | |
| 226 | * | |
| 227 | */ | |
| 228 | public void setS treet2(Str ing value) { | |
| 229 | th is.street2 = value; | |
| 230 | } | |
| 231 | ||
| 232 | /** | |
| 233 | * Get s the valu e of the s treet3 pro perty. | |
| 234 | * | |
| 235 | * @re turn | |
| 236 | * possible object is | |
| 237 | * {@link St ring } | |
| 238 | * | |
| 239 | */ | |
| 240 | public String ge tStreet3() { | |
| 241 | re turn stree t3; | |
| 242 | } | |
| 243 | ||
| 244 | /** | |
| 245 | * Set s the valu e of the s treet3 pro perty. | |
| 246 | * | |
| 247 | * @pa ram value | |
| 248 | * allowed o bject is | |
| 249 | * {@link St ring } | |
| 250 | * | |
| 251 | */ | |
| 252 | public void setS treet3(Str ing value) { | |
| 253 | th is.street3 = value; | |
| 254 | } | |
| 255 | ||
| 256 | /** | |
| 257 | * Get s the valu e of the t elcoms pro perty. | |
| 258 | * | |
| 259 | * <p> | |
| 260 | * Thi s accessor method re turns a re ference to the live list, | |
| 261 | * not a snapsho t. Therefo re any mod ification you make t o the | |
| 262 | * ret urned list will be p resent ins ide the JA XB object. | |
| 263 | * Thi s is why t here is no t a <CODE> set</CODE> method fo r the telc oms proper ty. | |
| 264 | * | |
| 265 | * <p> | |
| 266 | * For example, to add a n ew item, d o as follo ws: | |
| 267 | * <pr e> | |
| 268 | * getTelcoms ().add(new Item); | |
| 269 | * </p re> | |
| 270 | * | |
| 271 | * | |
| 272 | * <p> | |
| 273 | * Obj ects of th e followin g type(s) are allowe d in the l ist | |
| 274 | * {@l ink Teleco m } | |
| 275 | * | |
| 276 | * | |
| 277 | */ | |
| 278 | public List<Tele com> getTe lcoms() { | |
| 279 | if (telcoms == null) { | |
| 280 | telcoms = new Arra yList<Tele com>(); | |
| 281 | } | |
| 282 | re turn this. telcoms; | |
| 283 | } | |
| 284 | ||
| 285 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.