Produced by Araxis Merge on 12/20/2017 5:56:05 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_v6_bld6.zip\Source Code\TS\Service\mapping-service\src\main\java\gov\va\genisis2\ms\data\model | ConceptMapping.java | Thu Dec 14 19:57:20 2017 UTC |
| 2 | Genisis_2.0_v6_bld6.zip\Source Code\TS\Service\mapping-service\src\main\java\gov\va\genisis2\ms\data\model | ConceptMapping.java | Wed Dec 20 20:25:24 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 320 |
| 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 | import jav a.util.Set ; | |
| 8 | ||
| 9 | import jav ax.persist ence.Casca deType; | |
| 10 | import jav ax.persist ence.Colum n; | |
| 11 | import jav ax.persist ence.Entit y; | |
| 12 | import jav ax.persist ence.Fetch Type; | |
| 13 | import jav ax.persist ence.Gener atedValue; | |
| 14 | import jav ax.persist ence.Gener ationType; | |
| 15 | import jav ax.persist ence.Id; | |
| 16 | import jav ax.persist ence.OneTo Many; | |
| 17 | import jav ax.persist ence.Table ; | |
| 18 | ||
| 19 | import org .hibernate .annotatio ns.Fetch; | |
| 20 | import org .hibernate .annotatio ns.FetchMo de; | |
| 21 | ||
| 22 | /** | |
| 23 | * | |
| 24 | * @author P II | |
| 25 | * | |
| 26 | */ | |
| 27 | @Entity | |
| 28 | @Table(nam e = "conce pt_mapping ") | |
| 29 | public cla ss Concept Mapping im plements S erializabl e { | |
| 30 | ||
| 31 | pr ivate stat ic final l ong serial VersionUID = -829404 8970234386 144L; | |
| 32 | ||
| 33 | @I d | |
| 34 | @C olumn(name = "id") | |
| 35 | @G eneratedVa lue(strate gy = Gener ationType. AUTO) | |
| 36 | pr ivate int id; | |
| 37 | ||
| 38 | @C olumn(name = "concep t_uri") | |
| 39 | pr ivate Stri ng concept Uri; | |
| 40 | ||
| 41 | @C olumn(name = "term") | |
| 42 | pr ivate Stri ng term; | |
| 43 | ||
| 44 | @C olumn(name = "defini tion") | |
| 45 | pr ivate Stri ng definit ion; | |
| 46 | ||
| 47 | @C olumn(name = "algori thm") | |
| 48 | pr ivate Stri ng algorit hm; | |
| 49 | ||
| 50 | @C olumn(name = "valida tion") | |
| 51 | pr ivate Stri ng validat ion; | |
| 52 | ||
| 53 | @O neToMany(f etch = Fet chType.EAG ER, mapped By = "conc eptMapping ", cascade = Cascade Type.ALL, orphanRemo val=true) | |
| 54 | @F etch(Fetch Mode.SELEC T) | |
| 55 | pr ivate Set< ConceptMap pingDataEl ement> con ceptMappin gDataEleme nts; | |
| 56 | ||
| 57 | /* * | |
| 58 | * @return t he id | |
| 59 | * / | |
| 60 | pu blic int g etId() { | |
| 61 | retu rn id; | |
| 62 | } | |
| 63 | ||
| 64 | /* * | |
| 65 | * @param id | |
| 66 | * the id t o set | |
| 67 | * / | |
| 68 | pu blic void setId(int id) { | |
| 69 | this .id = id; | |
| 70 | } | |
| 71 | ||
| 72 | /* * | |
| 73 | * @return t he concept Uri | |
| 74 | * / | |
| 75 | pu blic Strin g getConce ptUri() { | |
| 76 | retu rn concept Uri; | |
| 77 | } | |
| 78 | ||
| 79 | /* * | |
| 80 | * @param co nceptUri | |
| 81 | * the conc eptUri to set | |
| 82 | * / | |
| 83 | pu blic void setConcept Uri(String conceptUr i) { | |
| 84 | this .conceptUr i = concep tUri; | |
| 85 | } | |
| 86 | ||
| 87 | /* * | |
| 88 | * @return t he term | |
| 89 | * / | |
| 90 | pu blic Strin g getTerm( ) { | |
| 91 | retu rn term; | |
| 92 | } | |
| 93 | ||
| 94 | /* * | |
| 95 | * @param te rm | |
| 96 | * the term to set | |
| 97 | * / | |
| 98 | pu blic void setTerm(St ring term) { | |
| 99 | this .term = te rm; | |
| 100 | } | |
| 101 | ||
| 102 | /* * | |
| 103 | * @return t he definit ion | |
| 104 | * / | |
| 105 | pu blic Strin g getDefin ition() { | |
| 106 | retu rn definit ion; | |
| 107 | } | |
| 108 | ||
| 109 | /* * | |
| 110 | * @param de finition | |
| 111 | * the defi nition to set | |
| 112 | * / | |
| 113 | pu blic void setDefinit ion(String definitio n) { | |
| 114 | this .definitio n = defini tion; | |
| 115 | } | |
| 116 | ||
| 117 | /* * | |
| 118 | * @return t he algorit hm | |
| 119 | * / | |
| 120 | pu blic Strin g getAlgor ithm() { | |
| 121 | retu rn algorit hm; | |
| 122 | } | |
| 123 | ||
| 124 | /* * | |
| 125 | * @param al gorithm | |
| 126 | * the algo rithm to s et | |
| 127 | * / | |
| 128 | pu blic void setAlgorit hm(String algorithm) { | |
| 129 | this .algorithm = algorit hm; | |
| 130 | } | |
| 131 | ||
| 132 | /* * | |
| 133 | * @return t he validat ion | |
| 134 | * / | |
| 135 | pu blic Strin g getValid ation() { | |
| 136 | retu rn validat ion; | |
| 137 | } | |
| 138 | ||
| 139 | /* * | |
| 140 | * @param va lidation | |
| 141 | * the vali dation to set | |
| 142 | * / | |
| 143 | pu blic void setValidat ion(String validatio n) { | |
| 144 | this .validatio n = valida tion; | |
| 145 | } | |
| 146 | ||
| 147 | /* * | |
| 148 | * @return t he concept MappingDat aElements | |
| 149 | * / | |
| 150 | pu blic Set<C onceptMapp ingDataEle ment> getC onceptMapp ingDataEle ments() { | |
| 151 | retu rn concept MappingDat aElements; | |
| 152 | } | |
| 153 | ||
| 154 | /* * | |
| 155 | * @param co nceptMappi ngDataElem ents | |
| 156 | * the conc eptMapping DataElemen ts to set | |
| 157 | * / | |
| 158 | pu blic void setConcept MappingDat aElements( Set<Concep tMappingDa taElement> conceptMa ppingDataE lements) { | |
| 159 | this .conceptMa ppingDataE lements = conceptMap pingDataEl ements; | |
| 160 | } | |
| 161 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.