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 | ProblemDetail.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 | ProblemDetail.java | Mon Oct 2 19:52:04 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 4 | 358 |
| Changed | 3 | 6 |
| 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 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.XmlSche maType; | |
| 10 | import jav ax.xml.bin d.annotati on.XmlType ; | |
| 11 | import jav ax.xml.dat atype.XMLG regorianCa lendar; | |
| 12 | ||
| 13 | ||
| 14 | /** | |
| 15 | * <p>Java class for problemDe tail compl ex type. | |
| 16 | * | |
| 17 | * <p>The following schema fra gment spec ifies the expected c ontent con tained wit hin this c lass. | |
| 18 | * | |
| 19 | * <pre> | |
| 20 | * <com plexType n ame="probl emDetail"> | |
| 21 | * <c omplexCont ent> | |
| 22 | * <extens ion base=" {http://we bservice.v ds. URL /}problem" > | |
| 23 | * & lt;sequenc e> | |
| 24 | * <eleme nt name="d etailText" type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/> | |
| 25 | * <eleme nt name="e nteredBy" type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/> | |
| 26 | * <eleme nt name="e nteredDate " type="{h ttp://www. w3.org/200 1/XMLSchem a}dateTime " minOccur s="0"/> | |
| 27 | * <elemen t name="no tes" type= "{http://w ebservice. vds. URL /}problemN ote" maxOc curs="unbo unded" min Occurs="0" /> | |
| 28 | * <eleme nt name="r ecordedBy" type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/> | |
| 29 | * & lt;/sequen ce> | |
| 30 | * < ;/extensio n> | |
| 31 | * </ complexCon tent> | |
| 32 | * </co mplexType> | |
| 33 | * </pre> | |
| 34 | * | |
| 35 | * | |
| 36 | */ | |
| 37 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 38 | @XmlType(n ame = "pro blemDetail ", namespa ce = "http ://webserv ice.vds. URL /", propOr der = { | |
| 39 | "detai lText", | |
| 40 | "enter edBy", | |
| 41 | "enter edDate", | |
| 42 | "notes ", | |
| 43 | "recor dedBy" | |
| 44 | }) | |
| 45 | public cla ss Problem Detail | |
| 46 | extend s Problem | |
| 47 | { | |
| 48 | ||
| 49 | protec ted String detailTex t; | |
| 50 | protec ted String enteredBy ; | |
| 51 | @XmlSc hemaType(n ame = "dat eTime") | |
| 52 | protec ted XMLGre gorianCale ndar enter edDate; | |
| 53 | @XmlEl ement(nill able = tru e) | |
| 54 | protec ted List<P roblemNote > notes; | |
| 55 | protec ted String recordedB y; | |
| 56 | ||
| 57 | /** | |
| 58 | * Get s the valu e of the d etailText property. | |
| 59 | * | |
| 60 | * @re turn | |
| 61 | * possible object is | |
| 62 | * {@link St ring } | |
| 63 | * | |
| 64 | */ | |
| 65 | public String ge tDetailTex t() { | |
| 66 | re turn detai lText; | |
| 67 | } | |
| 68 | ||
| 69 | /** | |
| 70 | * Set s the valu e of the d etailText property. | |
| 71 | * | |
| 72 | * @pa ram value | |
| 73 | * allowed o bject is | |
| 74 | * {@link St ring } | |
| 75 | * | |
| 76 | */ | |
| 77 | public void setD etailText( String val ue) { | |
| 78 | th is.detailT ext = valu e; | |
| 79 | } | |
| 80 | ||
| 81 | /** | |
| 82 | * Get s the valu e of the e nteredBy p roperty. | |
| 83 | * | |
| 84 | * @re turn | |
| 85 | * possible object is | |
| 86 | * {@link St ring } | |
| 87 | * | |
| 88 | */ | |
| 89 | public String ge tEnteredBy () { | |
| 90 | re turn enter edBy; | |
| 91 | } | |
| 92 | ||
| 93 | /** | |
| 94 | * Set s the valu e of the e nteredBy p roperty. | |
| 95 | * | |
| 96 | * @pa ram value | |
| 97 | * allowed o bject is | |
| 98 | * {@link St ring } | |
| 99 | * | |
| 100 | */ | |
| 101 | public void setE nteredBy(S tring valu e) { | |
| 102 | th is.entered By = value ; | |
| 103 | } | |
| 104 | ||
| 105 | /** | |
| 106 | * Get s the valu e of the e nteredDate property. | |
| 107 | * | |
| 108 | * @re turn | |
| 109 | * possible object is | |
| 110 | * {@link XM LGregorian Calendar } | |
| 111 | * | |
| 112 | */ | |
| 113 | public XMLGregor ianCalenda r getEnter edDate() { | |
| 114 | re turn enter edDate; | |
| 115 | } | |
| 116 | ||
| 117 | /** | |
| 118 | * Set s the valu e of the e nteredDate property. | |
| 119 | * | |
| 120 | * @pa ram value | |
| 121 | * allowed o bject is | |
| 122 | * {@link XM LGregorian Calendar } | |
| 123 | * | |
| 124 | */ | |
| 125 | public void setE nteredDate (XMLGregor ianCalenda r value) { | |
| 126 | th is.entered Date = val ue; | |
| 127 | } | |
| 128 | ||
| 129 | /** | |
| 130 | * Get s the valu e of the n otes prope rty. | |
| 131 | * | |
| 132 | * <p> | |
| 133 | * Thi s accessor method re turns a re ference to the live list, | |
| 134 | * not a snapsho t. Therefo re any mod ification you make t o the | |
| 135 | * ret urned list will be p resent ins ide the JA XB object. | |
| 136 | * Thi s is why t here is no t a <CODE> set</CODE> method fo r the note s property . | |
| 137 | * | |
| 138 | * <p> | |
| 139 | * For example, to add a n ew item, d o as follo ws: | |
| 140 | * <pr e> | |
| 141 | * getNotes() .add(newIt em); | |
| 142 | * </p re> | |
| 143 | * | |
| 144 | * | |
| 145 | * <p> | |
| 146 | * Obj ects of th e followin g type(s) are allowe d in the l ist | |
| 147 | * {@l ink Proble mNote } | |
| 148 | * | |
| 149 | * | |
| 150 | */ | |
| 151 | public List<Prob lemNote> g etNotes() { | |
| 152 | if (notes == null) { | |
| 153 | notes = new ArrayL ist<Proble mNote>(); | |
| 154 | } | |
| 155 | re turn this. notes; | |
| 156 | } | |
| 157 | ||
| 158 | /** | |
| 159 | * Get s the valu e of the r ecordedBy property. | |
| 160 | * | |
| 161 | * @re turn | |
| 162 | * possible object is | |
| 163 | * {@link St ring } | |
| 164 | * | |
| 165 | */ | |
| 166 | public String ge tRecordedB y() { | |
| 167 | re turn recor dedBy; | |
| 168 | } | |
| 169 | ||
| 170 | /** | |
| 171 | * Set s the valu e of the r ecordedBy property. | |
| 172 | * | |
| 173 | * @pa ram value | |
| 174 | * allowed o bject is | |
| 175 | * {@link St ring } | |
| 176 | * | |
| 177 | */ | |
| 178 | public void setR ecordedBy( String val ue) { | |
| 179 | th is.recorde dBy = valu e; | |
| 180 | } | |
| 181 | ||
| 182 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.