Produced by Araxis Merge on 12/21/2017 6:15:13 PM Eastern Standard 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 | Genisis_2.0_v7_bld7.zip\TS\Service\mapping-service\src\main\java\gov\va\genisis2\ms\data\model | DataElement.java | Thu Dec 14 19:57:17 2017 UTC |
| 2 | Genisis_2.0_v7_bld7.zip\TS\Service\mapping-service\src\main\java\gov\va\genisis2\ms\data\model | DataElement.java | Thu Dec 21 22:07:17 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 424 |
| 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 | * | |
| 3 | */ | |
| 4 | package go v.va.genis is2.ms.dat a.model; | |
| 5 | ||
| 6 | import jav a.io.Seria lizable; | |
| 7 | ||
| 8 | import jav ax.persist ence.Colum n; | |
| 9 | import jav ax.persist ence.Entit y; | |
| 10 | import jav ax.persist ence.Fetch Type; | |
| 11 | import jav ax.persist ence.Gener atedValue; | |
| 12 | import jav ax.persist ence.Gener ationType; | |
| 13 | import jav ax.persist ence.Id; | |
| 14 | import jav ax.persist ence.JoinC olumn; | |
| 15 | import jav ax.persist ence.ManyT oOne; | |
| 16 | import jav ax.persist ence.Table ; | |
| 17 | ||
| 18 | /** | |
| 19 | * | |
| 20 | * @author P II | |
| 21 | * | |
| 22 | */ | |
| 23 | @Entity | |
| 24 | @Table(nam e = "data_ element_so urce") | |
| 25 | public cla ss DataEle ment imple ments Seri alizable { | |
| 26 | ||
| 27 | pr ivate stat ic final l ong serial VersionUID = 6928520 7019579059 81L; | |
| 28 | ||
| 29 | @I d | |
| 30 | @C olumn(name = "id") | |
| 31 | @G eneratedVa lue(strate gy = Gener ationType. AUTO) | |
| 32 | pr ivate int id; | |
| 33 | ||
| 34 | @C olumn(name = "data_e lement_typ e_id", ins ertable = false, upd atable = f alse) | |
| 35 | pr ivate int dateElemen tTypeId; | |
| 36 | ||
| 37 | @M anyToOne(f etch = Fet chType.EAG ER) | |
| 38 | @J oinColumn( name = "da ta_element _type_id") | |
| 39 | pr ivate Data ElementTyp e dataElem entType; | |
| 40 | ||
| 41 | @C olumn(name = "data_t ype_id", i nsertable = false, u pdatable = false) | |
| 42 | pr ivate int dataTypeId ; | |
| 43 | ||
| 44 | @M anyToOne(f etch = Fet chType.EAG ER) | |
| 45 | @J oinColumn( name = "da ta_type_id ") | |
| 46 | pr ivate Data Type dataT ype; | |
| 47 | ||
| 48 | @C olumn(name = "data_e lement_sou rce_id", i nsertable = false, u pdatable = false) | |
| 49 | pr ivate int dataElemen tSourceId; | |
| 50 | ||
| 51 | @M anyToOne(f etch = Fet chType.EAG ER) | |
| 52 | @J oinColumn( name = "da ta_element _source_id ") | |
| 53 | pr ivate Data ElementSou rce dataEl ementSourc e; | |
| 54 | ||
| 55 | @C olumn(name = "path") | |
| 56 | pr ivate Stri ng path; | |
| 57 | ||
| 58 | @C olumn(name = "units" ) | |
| 59 | pr ivate Stri ng units; | |
| 60 | ||
| 61 | @C olumn(name = "algori thm") | |
| 62 | pr ivate Stri ng algorit hm; | |
| 63 | ||
| 64 | /* * | |
| 65 | * @return t he id | |
| 66 | * / | |
| 67 | pu blic int g etId() { | |
| 68 | retu rn id; | |
| 69 | } | |
| 70 | ||
| 71 | /* * | |
| 72 | * @param id | |
| 73 | * the id t o set | |
| 74 | * / | |
| 75 | pu blic void setId(int id) { | |
| 76 | this .id = id; | |
| 77 | } | |
| 78 | ||
| 79 | /* * | |
| 80 | * @return t he dateEle mentTypeId | |
| 81 | * / | |
| 82 | pu blic int g etDateElem entTypeId( ) { | |
| 83 | retu rn dateEle mentTypeId ; | |
| 84 | } | |
| 85 | ||
| 86 | /* * | |
| 87 | * @param da teElementT ypeId | |
| 88 | * the date ElementTyp eId to set | |
| 89 | * / | |
| 90 | pu blic void setDateEle mentTypeId (int dateE lementType Id) { | |
| 91 | this .dateEleme ntTypeId = dateEleme ntTypeId; | |
| 92 | } | |
| 93 | ||
| 94 | /* * | |
| 95 | * @return t he dataEle mentType | |
| 96 | * / | |
| 97 | pu blic DataE lementType getDataEl ementType( ) { | |
| 98 | retu rn dataEle mentType; | |
| 99 | } | |
| 100 | ||
| 101 | /* * | |
| 102 | * @param da taElementT ype | |
| 103 | * the data ElementTyp e to set | |
| 104 | * / | |
| 105 | pu blic void setDataEle mentType(D ataElement Type dataE lementType ) { | |
| 106 | this .dataEleme ntType = d ataElement Type; | |
| 107 | } | |
| 108 | ||
| 109 | /* * | |
| 110 | * @return t he dataTyp eId | |
| 111 | * / | |
| 112 | pu blic int g etDataType Id() { | |
| 113 | retu rn dataTyp eId; | |
| 114 | } | |
| 115 | ||
| 116 | /* * | |
| 117 | * @param da taTypeId | |
| 118 | * the data TypeId to set | |
| 119 | * / | |
| 120 | pu blic void setDataTyp eId(int da taTypeId) { | |
| 121 | this .dataTypeI d = dataTy peId; | |
| 122 | } | |
| 123 | ||
| 124 | /* * | |
| 125 | * @return t he dataTyp e | |
| 126 | * / | |
| 127 | pu blic DataT ype getDat aType() { | |
| 128 | retu rn dataTyp e; | |
| 129 | } | |
| 130 | ||
| 131 | /* * | |
| 132 | * @param da taType | |
| 133 | * the data Type to se t | |
| 134 | * / | |
| 135 | pu blic void setDataTyp e(DataType dataType) { | |
| 136 | this .dataType = dataType ; | |
| 137 | } | |
| 138 | ||
| 139 | /* * | |
| 140 | * @return t he dataEle mentSource Id | |
| 141 | * / | |
| 142 | pu blic int g etDataElem entSourceI d() { | |
| 143 | retu rn dataEle mentSource Id; | |
| 144 | } | |
| 145 | ||
| 146 | /* * | |
| 147 | * @param da taElementS ourceId | |
| 148 | * the data ElementSou rceId to s et | |
| 149 | * / | |
| 150 | pu blic void setDataEle mentSource Id(int dat aElementSo urceId) { | |
| 151 | this .dataEleme ntSourceId = dataEle mentSource Id; | |
| 152 | } | |
| 153 | ||
| 154 | /* * | |
| 155 | * @return t he dataEle mentSource | |
| 156 | * / | |
| 157 | pu blic DataE lementSour ce getData ElementSou rce() { | |
| 158 | retu rn dataEle mentSource ; | |
| 159 | } | |
| 160 | ||
| 161 | /* * | |
| 162 | * @param da taElementS ource | |
| 163 | * the data ElementSou rce to set | |
| 164 | * / | |
| 165 | pu blic void setDataEle mentSource (DataEleme ntSource d ataElement Source) { | |
| 166 | this .dataEleme ntSource = dataEleme ntSource; | |
| 167 | } | |
| 168 | ||
| 169 | /* * | |
| 170 | * @return t he path | |
| 171 | * / | |
| 172 | pu blic Strin g getPath( ) { | |
| 173 | retu rn path; | |
| 174 | } | |
| 175 | ||
| 176 | /* * | |
| 177 | * @param pa th | |
| 178 | * the path to set | |
| 179 | * / | |
| 180 | pu blic void setPath(St ring path) { | |
| 181 | this .path = pa th; | |
| 182 | } | |
| 183 | ||
| 184 | /* * | |
| 185 | * @return t he units | |
| 186 | * / | |
| 187 | pu blic Strin g getUnits () { | |
| 188 | retu rn units; | |
| 189 | } | |
| 190 | ||
| 191 | /* * | |
| 192 | * @param un its | |
| 193 | * the unit s to set | |
| 194 | * / | |
| 195 | pu blic void setUnits(S tring unit s) { | |
| 196 | this .units = u nits; | |
| 197 | } | |
| 198 | ||
| 199 | /* * | |
| 200 | * @return t he algorit hm | |
| 201 | * / | |
| 202 | pu blic Strin g getAlgor ithm() { | |
| 203 | retu rn algorit hm; | |
| 204 | } | |
| 205 | ||
| 206 | /* * | |
| 207 | * @param al gorithm | |
| 208 | * the algo rithm to s et | |
| 209 | * / | |
| 210 | pu blic void setAlgorit hm(String algorithm) { | |
| 211 | this .algorithm = algorit hm; | |
| 212 | } | |
| 213 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.