Produced by Araxis Merge on 10/3/2017 11:15:43 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 | ResponsePatientQuery.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 | ResponsePatientQuery.java | Mon Oct 2 19:55:46 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 280 |
| 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_3_0_2.we bservice; | |
| 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 responseP atientQuer y complex 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="respo nsePatient Query"> | |
| 19 | * <c omplexCont ent> | |
| 20 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |
| 21 | * & lt;sequenc e> | |
| 22 | * <elemen t name="de mographics " type="{h ttp://webs ervice.vds . URL /}patientD emographic s" minOccu rs="0"/> | |
| 23 | * <eleme nt name="e rrorMsg" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" /> | |
| 24 | * <elemen t name="pa tients" ty pe="{http: //webservi ce.vds. URL /}patient" maxOccurs ="unbounde d" minOccu rs="0"/> | |
| 25 | * <eleme nt name="s uccess" ty pe="{http: //www.w3.o rg/2001/XM LSchema}bo olean"/> | |
| 26 | * & lt;/sequen ce> | |
| 27 | * < ;/restrict ion> | |
| 28 | * </ complexCon tent> | |
| 29 | * </co mplexType> | |
| 30 | * </pre> | |
| 31 | * | |
| 32 | * | |
| 33 | */ | |
| 34 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 35 | @XmlType(n ame = "res ponsePatie ntQuery", propOrder = { | |
| 36 | "demog raphics", | |
| 37 | "error Msg", | |
| 38 | "patie nts", | |
| 39 | "succe ss" | |
| 40 | }) | |
| 41 | public cla ss Respons ePatientQu ery { | |
| 42 | ||
| 43 | protec ted Patien tDemograph ics demogr aphics; | |
| 44 | protec ted String errorMsg; | |
| 45 | @XmlEl ement(nill able = tru e) | |
| 46 | protec ted List<P atient> pa tients; | |
| 47 | protec ted boolea n success; | |
| 48 | ||
| 49 | /** | |
| 50 | * Get s the valu e of the d emographic s property . | |
| 51 | * | |
| 52 | * @re turn | |
| 53 | * possible object is | |
| 54 | * {@link Pa tientDemog raphics } | |
| 55 | * | |
| 56 | */ | |
| 57 | public PatientDe mographics getDemogr aphics() { | |
| 58 | re turn demog raphics; | |
| 59 | } | |
| 60 | ||
| 61 | /** | |
| 62 | * Set s the valu e of the d emographic s property . | |
| 63 | * | |
| 64 | * @pa ram value | |
| 65 | * allowed o bject is | |
| 66 | * {@link Pa tientDemog raphics } | |
| 67 | * | |
| 68 | */ | |
| 69 | public void setD emographic s(PatientD emographic s value) { | |
| 70 | th is.demogra phics = va lue; | |
| 71 | } | |
| 72 | ||
| 73 | /** | |
| 74 | * Get s the valu e of the e rrorMsg pr operty. | |
| 75 | * | |
| 76 | * @re turn | |
| 77 | * possible object is | |
| 78 | * {@link St ring } | |
| 79 | * | |
| 80 | */ | |
| 81 | public String ge tErrorMsg( ) { | |
| 82 | re turn error Msg; | |
| 83 | } | |
| 84 | ||
| 85 | /** | |
| 86 | * Set s the valu e of the e rrorMsg pr operty. | |
| 87 | * | |
| 88 | * @pa ram value | |
| 89 | * allowed o bject is | |
| 90 | * {@link St ring } | |
| 91 | * | |
| 92 | */ | |
| 93 | public void setE rrorMsg(St ring value ) { | |
| 94 | th is.errorMs g = value; | |
| 95 | } | |
| 96 | ||
| 97 | /** | |
| 98 | * Get s the valu e of the p atients pr operty. | |
| 99 | * | |
| 100 | * <p> | |
| 101 | * Thi s accessor method re turns a re ference to the live list, | |
| 102 | * not a snapsho t. Therefo re any mod ification you make t o the | |
| 103 | * ret urned list will be p resent ins ide the JA XB object. | |
| 104 | * Thi s is why t here is no t a <CODE> set</CODE> method fo r the pati ents prope rty. | |
| 105 | * | |
| 106 | * <p> | |
| 107 | * For example, to add a n ew item, d o as follo ws: | |
| 108 | * <pr e> | |
| 109 | * getPatient s().add(ne wItem); | |
| 110 | * </p re> | |
| 111 | * | |
| 112 | * | |
| 113 | * <p> | |
| 114 | * Obj ects of th e followin g type(s) are allowe d in the l ist | |
| 115 | * {@l ink Patien t } | |
| 116 | * | |
| 117 | * | |
| 118 | */ | |
| 119 | public List<Pati ent> getPa tients() { | |
| 120 | if (patients == null) { | |
| 121 | patients = new Arr ayList<Pat ient>(); | |
| 122 | } | |
| 123 | re turn this. patients; | |
| 124 | } | |
| 125 | ||
| 126 | /** | |
| 127 | * Get s the valu e of the s uccess pro perty. | |
| 128 | * | |
| 129 | */ | |
| 130 | public boolean i sSuccess() { | |
| 131 | re turn succe ss; | |
| 132 | } | |
| 133 | ||
| 134 | /** | |
| 135 | * Set s the valu e of the s uccess pro perty. | |
| 136 | * | |
| 137 | */ | |
| 138 | public void setS uccess(boo lean value ) { | |
| 139 | th is.success = value; | |
| 140 | } | |
| 141 | ||
| 142 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.