Produced by Araxis Merge on 10/3/2017 11:15:33 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 | Form.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 | Form.java | Mon Oct 2 19:52:32 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 502 |
| Changed | 2 | 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_1.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 form comp lex 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="form" > | |
| 18 | * <c omplexCont ent> | |
| 19 | * <extens ion base=" {http://we bservice.v ds. URL /}dataBean "> | |
| 20 | * & lt;sequenc e> | |
| 21 | * <eleme nt name="f ormId" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/> | |
| 22 | * <eleme nt name="f ormDate" t ype="{http ://www.w3. org/2001/X MLSchema}d ateTime" m inOccurs=" 0"/> | |
| 23 | * <eleme nt name="e nteredBy" type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/> | |
| 24 | * <eleme nt name="d ocumentTit le" type=" {http://ww w.w3.org/2 001/XMLSch ema}string " minOccur s="0"/> | |
| 25 | * <eleme nt name="f acilityNam e" type="{ http://www .w3.org/20 01/XMLSche ma}string" minOccurs ="0"/> | |
| 26 | * <elemen t name="de ploymentFo rm" type=" {http://we bservice.v ds. URL /}progress Note" minO ccurs="0"/ > | |
| 27 | * <elemen t name="qu estionnair eBean" typ e="{http:/ /webservic e.vds. URL /}question naireBean" minOccurs ="0"/> | |
| 28 | * <eleme nt name="d ocType" ty pe="{http: //www.w3.o rg/2001/XM LSchema}st ring" minO ccurs="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 = "for m", propOr der = { | |
| 39 | "formI d", | |
| 40 | "formD ate", | |
| 41 | "enter edBy", | |
| 42 | "docum entTitle", | |
| 43 | "facil ityName", | |
| 44 | "deplo ymentForm" , | |
| 45 | "quest ionnaireBe an", | |
| 46 | "docTy pe" | |
| 47 | }) | |
| 48 | public cla ss Form | |
| 49 | extend s DataBean | |
| 50 | { | |
| 51 | ||
| 52 | protec ted String formId; | |
| 53 | @XmlSc hemaType(n ame = "dat eTime") | |
| 54 | protec ted XMLGre gorianCale ndar formD ate; | |
| 55 | protec ted String enteredBy ; | |
| 56 | protec ted String documentT itle; | |
| 57 | protec ted String facilityN ame; | |
| 58 | protec ted Progre ssNote dep loymentFor m; | |
| 59 | protec ted Questi onnaireBea n question naireBean; | |
| 60 | protec ted String docType; | |
| 61 | ||
| 62 | /** | |
| 63 | * Get s the valu e of the f ormId prop erty. | |
| 64 | * | |
| 65 | * @re turn | |
| 66 | * possible object is | |
| 67 | * {@link St ring } | |
| 68 | * | |
| 69 | */ | |
| 70 | public String ge tFormId() { | |
| 71 | re turn formI d; | |
| 72 | } | |
| 73 | ||
| 74 | /** | |
| 75 | * Set s the valu e of the f ormId prop erty. | |
| 76 | * | |
| 77 | * @pa ram value | |
| 78 | * allowed o bject is | |
| 79 | * {@link St ring } | |
| 80 | * | |
| 81 | */ | |
| 82 | public void setF ormId(Stri ng value) { | |
| 83 | th is.formId = value; | |
| 84 | } | |
| 85 | ||
| 86 | /** | |
| 87 | * Get s the valu e of the f ormDate pr operty. | |
| 88 | * | |
| 89 | * @re turn | |
| 90 | * possible object is | |
| 91 | * {@link XM LGregorian Calendar } | |
| 92 | * | |
| 93 | */ | |
| 94 | public XMLGregor ianCalenda r getFormD ate() { | |
| 95 | re turn formD ate; | |
| 96 | } | |
| 97 | ||
| 98 | /** | |
| 99 | * Set s the valu e of the f ormDate pr operty. | |
| 100 | * | |
| 101 | * @pa ram value | |
| 102 | * allowed o bject is | |
| 103 | * {@link XM LGregorian Calendar } | |
| 104 | * | |
| 105 | */ | |
| 106 | public void setF ormDate(XM LGregorian Calendar v alue) { | |
| 107 | th is.formDat e = value; | |
| 108 | } | |
| 109 | ||
| 110 | /** | |
| 111 | * Get s the valu e of the e nteredBy p roperty. | |
| 112 | * | |
| 113 | * @re turn | |
| 114 | * possible object is | |
| 115 | * {@link St ring } | |
| 116 | * | |
| 117 | */ | |
| 118 | public String ge tEnteredBy () { | |
| 119 | re turn enter edBy; | |
| 120 | } | |
| 121 | ||
| 122 | /** | |
| 123 | * Set s the valu e of the e nteredBy p roperty. | |
| 124 | * | |
| 125 | * @pa ram value | |
| 126 | * allowed o bject is | |
| 127 | * {@link St ring } | |
| 128 | * | |
| 129 | */ | |
| 130 | public void setE nteredBy(S tring valu e) { | |
| 131 | th is.entered By = value ; | |
| 132 | } | |
| 133 | ||
| 134 | /** | |
| 135 | * Get s the valu e of the d ocumentTit le propert y. | |
| 136 | * | |
| 137 | * @re turn | |
| 138 | * possible object is | |
| 139 | * {@link St ring } | |
| 140 | * | |
| 141 | */ | |
| 142 | public String ge tDocumentT itle() { | |
| 143 | re turn docum entTitle; | |
| 144 | } | |
| 145 | ||
| 146 | /** | |
| 147 | * Set s the valu e of the d ocumentTit le propert y. | |
| 148 | * | |
| 149 | * @pa ram value | |
| 150 | * allowed o bject is | |
| 151 | * {@link St ring } | |
| 152 | * | |
| 153 | */ | |
| 154 | public void setD ocumentTit le(String value) { | |
| 155 | th is.documen tTitle = v alue; | |
| 156 | } | |
| 157 | ||
| 158 | /** | |
| 159 | * Get s the valu e of the f acilityNam e property . | |
| 160 | * | |
| 161 | * @re turn | |
| 162 | * possible object is | |
| 163 | * {@link St ring } | |
| 164 | * | |
| 165 | */ | |
| 166 | public String ge tFacilityN ame() { | |
| 167 | re turn facil ityName; | |
| 168 | } | |
| 169 | ||
| 170 | /** | |
| 171 | * Set s the valu e of the f acilityNam e property . | |
| 172 | * | |
| 173 | * @pa ram value | |
| 174 | * allowed o bject is | |
| 175 | * {@link St ring } | |
| 176 | * | |
| 177 | */ | |
| 178 | public void setF acilityNam e(String v alue) { | |
| 179 | th is.facilit yName = va lue; | |
| 180 | } | |
| 181 | ||
| 182 | /** | |
| 183 | * Get s the valu e of the d eploymentF orm proper ty. | |
| 184 | * | |
| 185 | * @re turn | |
| 186 | * possible object is | |
| 187 | * {@link Pr ogressNote } | |
| 188 | * | |
| 189 | */ | |
| 190 | public ProgressN ote getDep loymentFor m() { | |
| 191 | re turn deplo ymentForm; | |
| 192 | } | |
| 193 | ||
| 194 | /** | |
| 195 | * Set s the valu e of the d eploymentF orm proper ty. | |
| 196 | * | |
| 197 | * @pa ram value | |
| 198 | * allowed o bject is | |
| 199 | * {@link Pr ogressNote } | |
| 200 | * | |
| 201 | */ | |
| 202 | public void setD eploymentF orm(Progre ssNote val ue) { | |
| 203 | th is.deploym entForm = value; | |
| 204 | } | |
| 205 | ||
| 206 | /** | |
| 207 | * Get s the valu e of the q uestionnai reBean pro perty. | |
| 208 | * | |
| 209 | * @re turn | |
| 210 | * possible object is | |
| 211 | * {@link Qu estionnair eBean } | |
| 212 | * | |
| 213 | */ | |
| 214 | public Questionn aireBean g etQuestion naireBean( ) { | |
| 215 | re turn quest ionnaireBe an; | |
| 216 | } | |
| 217 | ||
| 218 | /** | |
| 219 | * Set s the valu e of the q uestionnai reBean pro perty. | |
| 220 | * | |
| 221 | * @pa ram value | |
| 222 | * allowed o bject is | |
| 223 | * {@link Qu estionnair eBean } | |
| 224 | * | |
| 225 | */ | |
| 226 | public void setQ uestionnai reBean(Que stionnaire Bean value ) { | |
| 227 | th is.questio nnaireBean = value; | |
| 228 | } | |
| 229 | ||
| 230 | /** | |
| 231 | * Get s the valu e of the d ocType pro perty. | |
| 232 | * | |
| 233 | * @re turn | |
| 234 | * possible object is | |
| 235 | * {@link St ring } | |
| 236 | * | |
| 237 | */ | |
| 238 | public String ge tDocType() { | |
| 239 | re turn docTy pe; | |
| 240 | } | |
| 241 | ||
| 242 | /** | |
| 243 | * Set s the valu e of the d ocType pro perty. | |
| 244 | * | |
| 245 | * @pa ram value | |
| 246 | * allowed o bject is | |
| 247 | * {@link St ring } | |
| 248 | * | |
| 249 | */ | |
| 250 | public void setD ocType(Str ing value) { | |
| 251 | th is.docType = value; | |
| 252 | } | |
| 253 | ||
| 254 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.