Produced by Araxis Merge on 6/9/2017 3:50:17 PM Eastern 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 | Fri Jun 9 19:50:17 2017 UTC | ||
| 2 | eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-ext-svc-proxy\src\main\java\gov\va\med\esr\webservices\jaxws\schemas | DependentInfo.java | Wed Jun 7 05:11:56 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 0 | 0 |
| Changed | 0 | 0 |
| Inserted | 1 | 271 |
| 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.e sr.webserv ices.jaxws .schemas; | |||||
| 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 dependent Info compl ex 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="depen dentInfo"> | |||||
| 18 | * <c omplexCont ent> | |||||
| 19 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |||||
| 20 | * & lt;all> | |||||
| 21 | * <eleme nt name="d ob" type=" {http://ww w.w3.org/2 001/XMLSch ema}string " minOccur s="0"/> | |||||
| 22 | * <eleme nt name="e ndDate" ty pe="{http: //www.w3.o rg/2001/XM LSchema}da teTime" mi nOccurs="0 "/> | |||||
| 23 | * <eleme nt name="f amilyName" type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/> | |||||
| 24 | * <eleme nt name="g ender" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/> | |||||
| 25 | * <eleme nt name="g ivenName" type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/> | |||||
| 26 | * <eleme nt name="m iddleName" type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/> | |||||
| 27 | * <eleme nt name="r elationshi p" type="{ http://www .w3.org/20 01/XMLSche ma}string" minOccurs ="0"/> | |||||
| 28 | * <eleme nt name="s sns" type= "{http://U RL.DNS}ssn Collection " minOccur s="0"/> | |||||
| 29 | * <eleme nt name="s tartDate" type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/> | |||||
| 30 | * & lt;/all> | |||||
| 31 | * < ;/restrict ion> | |||||
| 32 | * </ complexCon tent> | |||||
| 33 | * </co mplexType> | |||||
| 34 | * </pre> | |||||
| 35 | * | |||||
| 36 | * | |||||
| 37 | */ | |||||
| 38 | @XmlAccess orType(Xml AccessType .FIELD) | |||||
| 39 | @XmlType(n ame = "dep endentInfo ", propOrd er = { | |||||
| 40 | ||||||
| 41 | }) | |||||
| 42 | public cla ss Depende ntInfo { | |||||
| 43 | ||||||
| 44 | protec ted String dob; | |||||
| 45 | @XmlSc hemaType(n ame = "dat eTime") | |||||
| 46 | protec ted XMLGre gorianCale ndar endDa te; | |||||
| 47 | protec ted String familyNam e; | |||||
| 48 | protec ted String gender; | |||||
| 49 | protec ted String givenName ; | |||||
| 50 | protec ted String middleNam e; | |||||
| 51 | protec ted String relations hip; | |||||
| 52 | protec ted SsnCol lection ss ns; | |||||
| 53 | protec ted String startDate ; | |||||
| 54 | ||||||
| 55 | /** | |||||
| 56 | * Get s the valu e of the d ob propert y. | |||||
| 57 | * | |||||
| 58 | * @re turn | |||||
| 59 | * possible object is | |||||
| 60 | * {@link St ring } | |||||
| 61 | * | |||||
| 62 | */ | |||||
| 63 | public String ge tDob() { | |||||
| 64 | re turn dob; | |||||
| 65 | } | |||||
| 66 | ||||||
| 67 | /** | |||||
| 68 | * Set s the valu e of the d ob propert y. | |||||
| 69 | * | |||||
| 70 | * @pa ram value | |||||
| 71 | * allowed o bject is | |||||
| 72 | * {@link St ring } | |||||
| 73 | * | |||||
| 74 | */ | |||||
| 75 | public void setD ob(String value) { | |||||
| 76 | th is.dob = v alue; | |||||
| 77 | } | |||||
| 78 | ||||||
| 79 | /** | |||||
| 80 | * Get s the valu e of the e ndDate pro perty. | |||||
| 81 | * | |||||
| 82 | * @re turn | |||||
| 83 | * possible object is | |||||
| 84 | * {@link XM LGregorian Calendar } | |||||
| 85 | * | |||||
| 86 | */ | |||||
| 87 | public XMLGregor ianCalenda r getEndDa te() { | |||||
| 88 | re turn endDa te; | |||||
| 89 | } | |||||
| 90 | ||||||
| 91 | /** | |||||
| 92 | * Set s the valu e of the e ndDate pro perty. | |||||
| 93 | * | |||||
| 94 | * @pa ram value | |||||
| 95 | * allowed o bject is | |||||
| 96 | * {@link XM LGregorian Calendar } | |||||
| 97 | * | |||||
| 98 | */ | |||||
| 99 | public void setE ndDate(XML GregorianC alendar va lue) { | |||||
| 100 | th is.endDate = value; | |||||
| 101 | } | |||||
| 102 | ||||||
| 103 | /** | |||||
| 104 | * Get s the valu e of the f amilyName property. | |||||
| 105 | * | |||||
| 106 | * @re turn | |||||
| 107 | * possible object is | |||||
| 108 | * {@link St ring } | |||||
| 109 | * | |||||
| 110 | */ | |||||
| 111 | public String ge tFamilyNam e() { | |||||
| 112 | re turn famil yName; | |||||
| 113 | } | |||||
| 114 | ||||||
| 115 | /** | |||||
| 116 | * Set s the valu e of the f amilyName property. | |||||
| 117 | * | |||||
| 118 | * @pa ram value | |||||
| 119 | * allowed o bject is | |||||
| 120 | * {@link St ring } | |||||
| 121 | * | |||||
| 122 | */ | |||||
| 123 | public void setF amilyName( String val ue) { | |||||
| 124 | th is.familyN ame = valu e; | |||||
| 125 | } | |||||
| 126 | ||||||
| 127 | /** | |||||
| 128 | * Get s the valu e of the g ender prop erty. | |||||
| 129 | * | |||||
| 130 | * @re turn | |||||
| 131 | * possible object is | |||||
| 132 | * {@link St ring } | |||||
| 133 | * | |||||
| 134 | */ | |||||
| 135 | public String ge tGender() { | |||||
| 136 | re turn gende r; | |||||
| 137 | } | |||||
| 138 | ||||||
| 139 | /** | |||||
| 140 | * Set s the valu e of the g ender prop erty. | |||||
| 141 | * | |||||
| 142 | * @pa ram value | |||||
| 143 | * allowed o bject is | |||||
| 144 | * {@link St ring } | |||||
| 145 | * | |||||
| 146 | */ | |||||
| 147 | public void setG ender(Stri ng value) { | |||||
| 148 | th is.gender = value; | |||||
| 149 | } | |||||
| 150 | ||||||
| 151 | /** | |||||
| 152 | * Get s the valu e of the g ivenName p roperty. | |||||
| 153 | * | |||||
| 154 | * @re turn | |||||
| 155 | * possible object is | |||||
| 156 | * {@link St ring } | |||||
| 157 | * | |||||
| 158 | */ | |||||
| 159 | public String ge tGivenName () { | |||||
| 160 | re turn given Name; | |||||
| 161 | } | |||||
| 162 | ||||||
| 163 | /** | |||||
| 164 | * Set s the valu e of the g ivenName p roperty. | |||||
| 165 | * | |||||
| 166 | * @pa ram value | |||||
| 167 | * allowed o bject is | |||||
| 168 | * {@link St ring } | |||||
| 169 | * | |||||
| 170 | */ | |||||
| 171 | public void setG ivenName(S tring valu e) { | |||||
| 172 | th is.givenNa me = value ; | |||||
| 173 | } | |||||
| 174 | ||||||
| 175 | /** | |||||
| 176 | * Get s the valu e of the m iddleName property. | |||||
| 177 | * | |||||
| 178 | * @re turn | |||||
| 179 | * possible object is | |||||
| 180 | * {@link St ring } | |||||
| 181 | * | |||||
| 182 | */ | |||||
| 183 | public String ge tMiddleNam e() { | |||||
| 184 | re turn middl eName; | |||||
| 185 | } | |||||
| 186 | ||||||
| 187 | /** | |||||
| 188 | * Set s the valu e of the m iddleName property. | |||||
| 189 | * | |||||
| 190 | * @pa ram value | |||||
| 191 | * allowed o bject is | |||||
| 192 | * {@link St ring } | |||||
| 193 | * | |||||
| 194 | */ | |||||
| 195 | public void setM iddleName( String val ue) { | |||||
| 196 | th is.middleN ame = valu e; | |||||
| 197 | } | |||||
| 198 | ||||||
| 199 | /** | |||||
| 200 | * Get s the valu e of the r elationshi p property . | |||||
| 201 | * | |||||
| 202 | * @re turn | |||||
| 203 | * possible object is | |||||
| 204 | * {@link St ring } | |||||
| 205 | * | |||||
| 206 | */ | |||||
| 207 | public String ge tRelations hip() { | |||||
| 208 | re turn relat ionship; | |||||
| 209 | } | |||||
| 210 | ||||||
| 211 | /** | |||||
| 212 | * Set s the valu e of the r elationshi p property . | |||||
| 213 | * | |||||
| 214 | * @pa ram value | |||||
| 215 | * allowed o bject is | |||||
| 216 | * {@link St ring } | |||||
| 217 | * | |||||
| 218 | */ | |||||
| 219 | public void setR elationshi p(String v alue) { | |||||
| 220 | th is.relatio nship = va lue; | |||||
| 221 | } | |||||
| 222 | ||||||
| 223 | /** | |||||
| 224 | * Get s the valu e of the s sns proper ty. | |||||
| 225 | * | |||||
| 226 | * @re turn | |||||
| 227 | * possible object is | |||||
| 228 | * {@link Ss nCollectio n } | |||||
| 229 | * | |||||
| 230 | */ | |||||
| 231 | public SsnCollec tion getSs ns() { | |||||
| 232 | re turn ssns; | |||||
| 233 | } | |||||
| 234 | ||||||
| 235 | /** | |||||
| 236 | * Set s the valu e of the s sns proper ty. | |||||
| 237 | * | |||||
| 238 | * @pa ram value | |||||
| 239 | * allowed o bject is | |||||
| 240 | * {@link Ss nCollectio n } | |||||
| 241 | * | |||||
| 242 | */ | |||||
| 243 | public void setS sns(SsnCol lection va lue) { | |||||
| 244 | th is.ssns = value; | |||||
| 245 | } | |||||
| 246 | ||||||
| 247 | /** | |||||
| 248 | * Get s the valu e of the s tartDate p roperty. | |||||
| 249 | * | |||||
| 250 | * @re turn | |||||
| 251 | * possible object is | |||||
| 252 | * {@link St ring } | |||||
| 253 | * | |||||
| 254 | */ | |||||
| 255 | public String ge tStartDate () { | |||||
| 256 | re turn start Date; | |||||
| 257 | } | |||||
| 258 | ||||||
| 259 | /** | |||||
| 260 | * Set s the valu e of the s tartDate p roperty. | |||||
| 261 | * | |||||
| 262 | * @pa ram value | |||||
| 263 | * allowed o bject is | |||||
| 264 | * {@link St ring } | |||||
| 265 | * | |||||
| 266 | */ | |||||
| 267 | public void setS tartDate(S tring valu e) { | |||||
| 268 | th is.startDa te = value ; | |||||
| 269 | } | |||||
| 270 | ||||||
| 271 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.