Produced by Araxis Merge on 4/5/2017 4:25:31 PM 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 | C:\working_scrub\Unredacted\VAP Code Base\VAP_Bld2_Source_Code_CIF_2017-02-14\nvap-ext-svc-proxy\src\main\java\gov\va\med\esr\webservices\jaxws\schemas | EmploymentInfo.java | Wed Feb 1 18:37:28 2017 UTC |
| 2 | eHX-CIF.zip\eHX-CIF\VAP Code Base\VAP_Bld2_Source_Code_CIF_2017-02-14\nvap-ext-svc-proxy\src\main\java\gov\va\med\esr\webservices\jaxws\schemas | EmploymentInfo.java | Mon Apr 3 14:02:52 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 384 |
| Changed | 1 | 2 |
| 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.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 employmen tInfo 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="emplo ymentInfo" > | |
| 18 | * <c omplexCont ent> | |
| 19 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |
| 20 | * & lt;all> | |
| 21 | * <elemen t name="em ployerAddr ess" type= "{http://j axws.webse rvices.esr . URL /schemas}a ddressInfo " minOccur s="0"/> | |
| 22 | * <eleme nt name="e mployerNam e" type="{ http://www .w3.org/20 01/XMLSche ma}string" minOccurs ="0"/> | |
| 23 | * <eleme nt name="e mployerPho ne" type=" {http://ww w.w3.org/2 001/XMLSch ema}string " minOccur s="0"/> | |
| 24 | * <eleme nt name="e mploymentS tatus" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/> | |
| 25 | * <eleme nt name="o ccupation" type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/> | |
| 26 | * <eleme nt name="r etirementD ate" type= "{http://w ww.w3.org/ 2001/XMLSc hema}dateT ime" minOc curs="0"/> | |
| 27 | * & lt;/all> | |
| 28 | * < ;/restrict ion> | |
| 29 | * </ complexCon tent> | |
| 30 | * </co mplexType> | |
| 31 | * </pre> | |
| 32 | * | |
| 33 | * | |
| 34 | */ | |
| 35 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 36 | @XmlType(n ame = "emp loymentInf o", propOr der = { | |
| 37 | ||
| 38 | }) | |
| 39 | public cla ss Employm entInfo { | |
| 40 | ||
| 41 | protec ted Addres sInfo empl oyerAddres s; | |
| 42 | protec ted String employerN ame; | |
| 43 | protec ted String employerP hone; | |
| 44 | protec ted String employmen tStatus; | |
| 45 | protec ted String occupatio n; | |
| 46 | @XmlSc hemaType(n ame = "dat eTime") | |
| 47 | protec ted XMLGre gorianCale ndar retir ementDate; | |
| 48 | ||
| 49 | /** | |
| 50 | * Get s the valu e of the e mployerAdd ress prope rty. | |
| 51 | * | |
| 52 | * @re turn | |
| 53 | * possible object is | |
| 54 | * {@link Ad dressInfo } | |
| 55 | * | |
| 56 | */ | |
| 57 | public AddressIn fo getEmpl oyerAddres s() { | |
| 58 | re turn emplo yerAddress ; | |
| 59 | } | |
| 60 | ||
| 61 | /** | |
| 62 | * Set s the valu e of the e mployerAdd ress prope rty. | |
| 63 | * | |
| 64 | * @pa ram value | |
| 65 | * allowed o bject is | |
| 66 | * {@link Ad dressInfo } | |
| 67 | * | |
| 68 | */ | |
| 69 | public void setE mployerAdd ress(Addre ssInfo val ue) { | |
| 70 | th is.employe rAddress = value; | |
| 71 | } | |
| 72 | ||
| 73 | /** | |
| 74 | * Get s the valu e of the e mployerNam e property . | |
| 75 | * | |
| 76 | * @re turn | |
| 77 | * possible object is | |
| 78 | * {@link St ring } | |
| 79 | * | |
| 80 | */ | |
| 81 | public String ge tEmployerN ame() { | |
| 82 | re turn emplo yerName; | |
| 83 | } | |
| 84 | ||
| 85 | /** | |
| 86 | * Set s the valu e of the e mployerNam e property . | |
| 87 | * | |
| 88 | * @pa ram value | |
| 89 | * allowed o bject is | |
| 90 | * {@link St ring } | |
| 91 | * | |
| 92 | */ | |
| 93 | public void setE mployerNam e(String v alue) { | |
| 94 | th is.employe rName = va lue; | |
| 95 | } | |
| 96 | ||
| 97 | /** | |
| 98 | * Get s the valu e of the e mployerPho ne propert y. | |
| 99 | * | |
| 100 | * @re turn | |
| 101 | * possible object is | |
| 102 | * {@link St ring } | |
| 103 | * | |
| 104 | */ | |
| 105 | public String ge tEmployerP hone() { | |
| 106 | re turn emplo yerPhone; | |
| 107 | } | |
| 108 | ||
| 109 | /** | |
| 110 | * Set s the valu e of the e mployerPho ne propert y. | |
| 111 | * | |
| 112 | * @pa ram value | |
| 113 | * allowed o bject is | |
| 114 | * {@link St ring } | |
| 115 | * | |
| 116 | */ | |
| 117 | public void setE mployerPho ne(String value) { | |
| 118 | th is.employe rPhone = v alue; | |
| 119 | } | |
| 120 | ||
| 121 | /** | |
| 122 | * Get s the valu e of the e mploymentS tatus prop erty. | |
| 123 | * | |
| 124 | * @re turn | |
| 125 | * possible object is | |
| 126 | * {@link St ring } | |
| 127 | * | |
| 128 | */ | |
| 129 | public String ge tEmploymen tStatus() { | |
| 130 | re turn emplo ymentStatu s; | |
| 131 | } | |
| 132 | ||
| 133 | /** | |
| 134 | * Set s the valu e of the e mploymentS tatus prop erty. | |
| 135 | * | |
| 136 | * @pa ram value | |
| 137 | * allowed o bject is | |
| 138 | * {@link St ring } | |
| 139 | * | |
| 140 | */ | |
| 141 | public void setE mploymentS tatus(Stri ng value) { | |
| 142 | th is.employm entStatus = value; | |
| 143 | } | |
| 144 | ||
| 145 | /** | |
| 146 | * Get s the valu e of the o ccupation property. | |
| 147 | * | |
| 148 | * @re turn | |
| 149 | * possible object is | |
| 150 | * {@link St ring } | |
| 151 | * | |
| 152 | */ | |
| 153 | public String ge tOccupatio n() { | |
| 154 | re turn occup ation; | |
| 155 | } | |
| 156 | ||
| 157 | /** | |
| 158 | * Set s the valu e of the o ccupation property. | |
| 159 | * | |
| 160 | * @pa ram value | |
| 161 | * allowed o bject is | |
| 162 | * {@link St ring } | |
| 163 | * | |
| 164 | */ | |
| 165 | public void setO ccupation( String val ue) { | |
| 166 | th is.occupat ion = valu e; | |
| 167 | } | |
| 168 | ||
| 169 | /** | |
| 170 | * Get s the valu e of the r etirementD ate proper ty. | |
| 171 | * | |
| 172 | * @re turn | |
| 173 | * possible object is | |
| 174 | * {@link XM LGregorian Calendar } | |
| 175 | * | |
| 176 | */ | |
| 177 | public XMLGregor ianCalenda r getRetir ementDate( ) { | |
| 178 | re turn retir ementDate; | |
| 179 | } | |
| 180 | ||
| 181 | /** | |
| 182 | * Set s the valu e of the r etirementD ate proper ty. | |
| 183 | * | |
| 184 | * @pa ram value | |
| 185 | * allowed o bject is | |
| 186 | * {@link XM LGregorian Calendar } | |
| 187 | * | |
| 188 | */ | |
| 189 | public void setR etirementD ate(XMLGre gorianCale ndar value ) { | |
| 190 | th is.retirem entDate = value; | |
| 191 | } | |
| 192 | ||
| 193 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.