Produced by Araxis Merge on 10/3/2017 11:15:32 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 | Provider.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 | Provider.java | Mon Oct 2 19:52:06 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 594 |
| 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 | 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 provider complex ty pe. | |
| 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="provi der"> | |
| 18 | * <c omplexCont ent> | |
| 19 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |
| 20 | * & lt;sequenc e> | |
| 21 | * <eleme nt name="c lassificat ion" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
| 22 | * <eleme nt name="c ode" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
| 23 | * <eleme nt name="d ateTime" t ype="{http ://www.w3. org/2001/X MLSchema}d ateTime" m inOccurs=" 0"/> | |
| 24 | * <eleme nt name="n ame" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
| 25 | * <eleme nt name="p rimary" ty pe="{http: //www.w3.o rg/2001/XM LSchema}bo olean"/> | |
| 26 | * <eleme nt name="p roviderTyp e" type="{ http://www .w3.org/20 01/XMLSche ma}string" minOccurs ="0"/> | |
| 27 | * <eleme nt name="r ole" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
| 28 | * <eleme nt name="s ignatureBl ock" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
| 29 | * <eleme nt name="s pecializat ion" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
| 30 | * <eleme nt name="t axonomyCod e" type="{ http://www .w3.org/20 01/XMLSche ma}string" minOccurs ="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 = "pro vider", na mespace = "http://we bservice.v ds. URL /", propOr der = { | |
| 41 | "class ification" , | |
| 42 | "code" , | |
| 43 | "dateT ime", | |
| 44 | "name" , | |
| 45 | "prima ry", | |
| 46 | "provi derType", | |
| 47 | "role" , | |
| 48 | "signa tureBlock" , | |
| 49 | "speci alization" , | |
| 50 | "taxon omyCode" | |
| 51 | }) | |
| 52 | public cla ss Provide r { | |
| 53 | ||
| 54 | protec ted String classific ation; | |
| 55 | protec ted String code; | |
| 56 | @XmlSc hemaType(n ame = "dat eTime") | |
| 57 | protec ted XMLGre gorianCale ndar dateT ime; | |
| 58 | protec ted String name; | |
| 59 | protec ted boolea n primary; | |
| 60 | protec ted String providerT ype; | |
| 61 | protec ted String role; | |
| 62 | protec ted String signature Block; | |
| 63 | protec ted String specializ ation; | |
| 64 | protec ted String taxonomyC ode; | |
| 65 | ||
| 66 | /** | |
| 67 | * Get s the valu e of the c lassificat ion proper ty. | |
| 68 | * | |
| 69 | * @re turn | |
| 70 | * possible object is | |
| 71 | * {@link St ring } | |
| 72 | * | |
| 73 | */ | |
| 74 | public String ge tClassific ation() { | |
| 75 | re turn class ification; | |
| 76 | } | |
| 77 | ||
| 78 | /** | |
| 79 | * Set s the valu e of the c lassificat ion proper ty. | |
| 80 | * | |
| 81 | * @pa ram value | |
| 82 | * allowed o bject is | |
| 83 | * {@link St ring } | |
| 84 | * | |
| 85 | */ | |
| 86 | public void setC lassificat ion(String value) { | |
| 87 | th is.classif ication = value; | |
| 88 | } | |
| 89 | ||
| 90 | /** | |
| 91 | * Get s the valu e of the c ode proper ty. | |
| 92 | * | |
| 93 | * @re turn | |
| 94 | * possible object is | |
| 95 | * {@link St ring } | |
| 96 | * | |
| 97 | */ | |
| 98 | public String ge tCode() { | |
| 99 | re turn code; | |
| 100 | } | |
| 101 | ||
| 102 | /** | |
| 103 | * Set s the valu e of the c ode proper ty. | |
| 104 | * | |
| 105 | * @pa ram value | |
| 106 | * allowed o bject is | |
| 107 | * {@link St ring } | |
| 108 | * | |
| 109 | */ | |
| 110 | public void setC ode(String value) { | |
| 111 | th is.code = value; | |
| 112 | } | |
| 113 | ||
| 114 | /** | |
| 115 | * Get s the valu e of the d ateTime pr operty. | |
| 116 | * | |
| 117 | * @re turn | |
| 118 | * possible object is | |
| 119 | * {@link XM LGregorian Calendar } | |
| 120 | * | |
| 121 | */ | |
| 122 | public XMLGregor ianCalenda r getDateT ime() { | |
| 123 | re turn dateT ime; | |
| 124 | } | |
| 125 | ||
| 126 | /** | |
| 127 | * Set s the valu e of the d ateTime pr operty. | |
| 128 | * | |
| 129 | * @pa ram value | |
| 130 | * allowed o bject is | |
| 131 | * {@link XM LGregorian Calendar } | |
| 132 | * | |
| 133 | */ | |
| 134 | public void setD ateTime(XM LGregorian Calendar v alue) { | |
| 135 | th is.dateTim e = value; | |
| 136 | } | |
| 137 | ||
| 138 | /** | |
| 139 | * Get s the valu e of the n ame proper ty. | |
| 140 | * | |
| 141 | * @re turn | |
| 142 | * possible object is | |
| 143 | * {@link St ring } | |
| 144 | * | |
| 145 | */ | |
| 146 | public String ge tName() { | |
| 147 | re turn name; | |
| 148 | } | |
| 149 | ||
| 150 | /** | |
| 151 | * Set s the valu e of the n ame proper ty. | |
| 152 | * | |
| 153 | * @pa ram value | |
| 154 | * allowed o bject is | |
| 155 | * {@link St ring } | |
| 156 | * | |
| 157 | */ | |
| 158 | public void setN ame(String value) { | |
| 159 | th is.name = value; | |
| 160 | } | |
| 161 | ||
| 162 | /** | |
| 163 | * Get s the valu e of the p rimary pro perty. | |
| 164 | * | |
| 165 | */ | |
| 166 | public boolean i sPrimary() { | |
| 167 | re turn prima ry; | |
| 168 | } | |
| 169 | ||
| 170 | /** | |
| 171 | * Set s the valu e of the p rimary pro perty. | |
| 172 | * | |
| 173 | */ | |
| 174 | public void setP rimary(boo lean value ) { | |
| 175 | th is.primary = value; | |
| 176 | } | |
| 177 | ||
| 178 | /** | |
| 179 | * Get s the valu e of the p roviderTyp e property . | |
| 180 | * | |
| 181 | * @re turn | |
| 182 | * possible object is | |
| 183 | * {@link St ring } | |
| 184 | * | |
| 185 | */ | |
| 186 | public String ge tProviderT ype() { | |
| 187 | re turn provi derType; | |
| 188 | } | |
| 189 | ||
| 190 | /** | |
| 191 | * Set s the valu e of the p roviderTyp e property . | |
| 192 | * | |
| 193 | * @pa ram value | |
| 194 | * allowed o bject is | |
| 195 | * {@link St ring } | |
| 196 | * | |
| 197 | */ | |
| 198 | public void setP roviderTyp e(String v alue) { | |
| 199 | th is.provide rType = va lue; | |
| 200 | } | |
| 201 | ||
| 202 | /** | |
| 203 | * Get s the valu e of the r ole proper ty. | |
| 204 | * | |
| 205 | * @re turn | |
| 206 | * possible object is | |
| 207 | * {@link St ring } | |
| 208 | * | |
| 209 | */ | |
| 210 | public String ge tRole() { | |
| 211 | re turn role; | |
| 212 | } | |
| 213 | ||
| 214 | /** | |
| 215 | * Set s the valu e of the r ole proper ty. | |
| 216 | * | |
| 217 | * @pa ram value | |
| 218 | * allowed o bject is | |
| 219 | * {@link St ring } | |
| 220 | * | |
| 221 | */ | |
| 222 | public void setR ole(String value) { | |
| 223 | th is.role = value; | |
| 224 | } | |
| 225 | ||
| 226 | /** | |
| 227 | * Get s the valu e of the s ignatureBl ock proper ty. | |
| 228 | * | |
| 229 | * @re turn | |
| 230 | * possible object is | |
| 231 | * {@link St ring } | |
| 232 | * | |
| 233 | */ | |
| 234 | public String ge tSignature Block() { | |
| 235 | re turn signa tureBlock; | |
| 236 | } | |
| 237 | ||
| 238 | /** | |
| 239 | * Set s the valu e of the s ignatureBl ock proper ty. | |
| 240 | * | |
| 241 | * @pa ram value | |
| 242 | * allowed o bject is | |
| 243 | * {@link St ring } | |
| 244 | * | |
| 245 | */ | |
| 246 | public void setS ignatureBl ock(String value) { | |
| 247 | th is.signatu reBlock = value; | |
| 248 | } | |
| 249 | ||
| 250 | /** | |
| 251 | * Get s the valu e of the s pecializat ion proper ty. | |
| 252 | * | |
| 253 | * @re turn | |
| 254 | * possible object is | |
| 255 | * {@link St ring } | |
| 256 | * | |
| 257 | */ | |
| 258 | public String ge tSpecializ ation() { | |
| 259 | re turn speci alization; | |
| 260 | } | |
| 261 | ||
| 262 | /** | |
| 263 | * Set s the valu e of the s pecializat ion proper ty. | |
| 264 | * | |
| 265 | * @pa ram value | |
| 266 | * allowed o bject is | |
| 267 | * {@link St ring } | |
| 268 | * | |
| 269 | */ | |
| 270 | public void setS pecializat ion(String value) { | |
| 271 | th is.special ization = value; | |
| 272 | } | |
| 273 | ||
| 274 | /** | |
| 275 | * Get s the valu e of the t axonomyCod e property . | |
| 276 | * | |
| 277 | * @re turn | |
| 278 | * possible object is | |
| 279 | * {@link St ring } | |
| 280 | * | |
| 281 | */ | |
| 282 | public String ge tTaxonomyC ode() { | |
| 283 | re turn taxon omyCode; | |
| 284 | } | |
| 285 | ||
| 286 | /** | |
| 287 | * Set s the valu e of the t axonomyCod e property . | |
| 288 | * | |
| 289 | * @pa ram value | |
| 290 | * allowed o bject is | |
| 291 | * {@link St ring } | |
| 292 | * | |
| 293 | */ | |
| 294 | public void setT axonomyCod e(String v alue) { | |
| 295 | th is.taxonom yCode = va lue; | |
| 296 | } | |
| 297 | ||
| 298 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.