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 | PrescriptionFill.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 | PrescriptionFill.java | Mon Oct 2 19:55:37 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 436 |
| 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 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 prescript ionFill 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="presc riptionFil l"> | |
| 18 | * <c omplexCont ent> | |
| 19 | * <extens ion base=" {http://we bservice.v ds. URL /}dataBean "> | |
| 20 | * & lt;sequenc e> | |
| 21 | * <eleme nt name="d aysSupply" type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/> | |
| 22 | * <eleme nt name="d ispenseDat e" type="{ http://www .w3.org/20 01/XMLSche ma}dateTim e" minOccu rs="0"/> | |
| 23 | * <eleme nt name="d ispensingP harmacy" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" /> | |
| 24 | * <eleme nt name="d ispensingQ uantity" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" /> | |
| 25 | * <eleme nt name="p artial" ty pe="{http: //www.w3.o rg/2001/XM LSchema}bo olean"/> | |
| 26 | * <eleme nt name="r eleaseDate " type="{h ttp://www. w3.org/200 1/XMLSchem a}dateTime " minOccur s="0"/> | |
| 27 | * <eleme nt name="r outing" ty pe="{http: //www.w3.o rg/2001/XM LSchema}st ring" minO ccurs="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 = "pre scriptionF ill", name space = "h ttp://webs ervice.vds . URL /", propOr der = { | |
| 38 | "daysS upply", | |
| 39 | "dispe nseDate", | |
| 40 | "dispe nsingPharm acy", | |
| 41 | "dispe nsingQuant ity", | |
| 42 | "parti al", | |
| 43 | "relea seDate", | |
| 44 | "routi ng" | |
| 45 | }) | |
| 46 | public cla ss Prescri ptionFill | |
| 47 | extend s DataBean | |
| 48 | { | |
| 49 | ||
| 50 | protec ted String daysSuppl y; | |
| 51 | @XmlSc hemaType(n ame = "dat eTime") | |
| 52 | protec ted XMLGre gorianCale ndar dispe nseDate; | |
| 53 | protec ted String dispensin gPharmacy; | |
| 54 | protec ted String dispensin gQuantity; | |
| 55 | protec ted boolea n partial; | |
| 56 | @XmlSc hemaType(n ame = "dat eTime") | |
| 57 | protec ted XMLGre gorianCale ndar relea seDate; | |
| 58 | protec ted String routing; | |
| 59 | ||
| 60 | /** | |
| 61 | * Get s the valu e of the d aysSupply property. | |
| 62 | * | |
| 63 | * @re turn | |
| 64 | * possible object is | |
| 65 | * {@link St ring } | |
| 66 | * | |
| 67 | */ | |
| 68 | public String ge tDaysSuppl y() { | |
| 69 | re turn daysS upply; | |
| 70 | } | |
| 71 | ||
| 72 | /** | |
| 73 | * Set s the valu e of the d aysSupply property. | |
| 74 | * | |
| 75 | * @pa ram value | |
| 76 | * allowed o bject is | |
| 77 | * {@link St ring } | |
| 78 | * | |
| 79 | */ | |
| 80 | public void setD aysSupply( String val ue) { | |
| 81 | th is.daysSup ply = valu e; | |
| 82 | } | |
| 83 | ||
| 84 | /** | |
| 85 | * Get s the valu e of the d ispenseDat e property . | |
| 86 | * | |
| 87 | * @re turn | |
| 88 | * possible object is | |
| 89 | * {@link XM LGregorian Calendar } | |
| 90 | * | |
| 91 | */ | |
| 92 | public XMLGregor ianCalenda r getDispe nseDate() { | |
| 93 | re turn dispe nseDate; | |
| 94 | } | |
| 95 | ||
| 96 | /** | |
| 97 | * Set s the valu e of the d ispenseDat e property . | |
| 98 | * | |
| 99 | * @pa ram value | |
| 100 | * allowed o bject is | |
| 101 | * {@link XM LGregorian Calendar } | |
| 102 | * | |
| 103 | */ | |
| 104 | public void setD ispenseDat e(XMLGrego rianCalend ar value) { | |
| 105 | th is.dispens eDate = va lue; | |
| 106 | } | |
| 107 | ||
| 108 | /** | |
| 109 | * Get s the valu e of the d ispensingP harmacy pr operty. | |
| 110 | * | |
| 111 | * @re turn | |
| 112 | * possible object is | |
| 113 | * {@link St ring } | |
| 114 | * | |
| 115 | */ | |
| 116 | public String ge tDispensin gPharmacy( ) { | |
| 117 | re turn dispe nsingPharm acy; | |
| 118 | } | |
| 119 | ||
| 120 | /** | |
| 121 | * Set s the valu e of the d ispensingP harmacy pr operty. | |
| 122 | * | |
| 123 | * @pa ram value | |
| 124 | * allowed o bject is | |
| 125 | * {@link St ring } | |
| 126 | * | |
| 127 | */ | |
| 128 | public void setD ispensingP harmacy(St ring value ) { | |
| 129 | th is.dispens ingPharmac y = value; | |
| 130 | } | |
| 131 | ||
| 132 | /** | |
| 133 | * Get s the valu e of the d ispensingQ uantity pr operty. | |
| 134 | * | |
| 135 | * @re turn | |
| 136 | * possible object is | |
| 137 | * {@link St ring } | |
| 138 | * | |
| 139 | */ | |
| 140 | public String ge tDispensin gQuantity( ) { | |
| 141 | re turn dispe nsingQuant ity; | |
| 142 | } | |
| 143 | ||
| 144 | /** | |
| 145 | * Set s the valu e of the d ispensingQ uantity pr operty. | |
| 146 | * | |
| 147 | * @pa ram value | |
| 148 | * allowed o bject is | |
| 149 | * {@link St ring } | |
| 150 | * | |
| 151 | */ | |
| 152 | public void setD ispensingQ uantity(St ring value ) { | |
| 153 | th is.dispens ingQuantit y = value; | |
| 154 | } | |
| 155 | ||
| 156 | /** | |
| 157 | * Get s the valu e of the p artial pro perty. | |
| 158 | * | |
| 159 | */ | |
| 160 | public boolean i sPartial() { | |
| 161 | re turn parti al; | |
| 162 | } | |
| 163 | ||
| 164 | /** | |
| 165 | * Set s the valu e of the p artial pro perty. | |
| 166 | * | |
| 167 | */ | |
| 168 | public void setP artial(boo lean value ) { | |
| 169 | th is.partial = value; | |
| 170 | } | |
| 171 | ||
| 172 | /** | |
| 173 | * Get s the valu e of the r eleaseDate property. | |
| 174 | * | |
| 175 | * @re turn | |
| 176 | * possible object is | |
| 177 | * {@link XM LGregorian Calendar } | |
| 178 | * | |
| 179 | */ | |
| 180 | public XMLGregor ianCalenda r getRelea seDate() { | |
| 181 | re turn relea seDate; | |
| 182 | } | |
| 183 | ||
| 184 | /** | |
| 185 | * Set s the valu e of the r eleaseDate property. | |
| 186 | * | |
| 187 | * @pa ram value | |
| 188 | * allowed o bject is | |
| 189 | * {@link XM LGregorian Calendar } | |
| 190 | * | |
| 191 | */ | |
| 192 | public void setR eleaseDate (XMLGregor ianCalenda r value) { | |
| 193 | th is.release Date = val ue; | |
| 194 | } | |
| 195 | ||
| 196 | /** | |
| 197 | * Get s the valu e of the r outing pro perty. | |
| 198 | * | |
| 199 | * @re turn | |
| 200 | * possible object is | |
| 201 | * {@link St ring } | |
| 202 | * | |
| 203 | */ | |
| 204 | public String ge tRouting() { | |
| 205 | re turn routi ng; | |
| 206 | } | |
| 207 | ||
| 208 | /** | |
| 209 | * Set s the valu e of the r outing pro perty. | |
| 210 | * | |
| 211 | * @pa ram value | |
| 212 | * allowed o bject is | |
| 213 | * {@link St ring } | |
| 214 | * | |
| 215 | */ | |
| 216 | public void setR outing(Str ing value) { | |
| 217 | th is.routing = value; | |
| 218 | } | |
| 219 | ||
| 220 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.