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 | ConceptMappingDataElement.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 | ConceptMappingDataElement.java | Wed Dec 20 20:25:33 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 240 |
| 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 = "conce pt_mapping _data_elem ents") | |
| 25 | public cla ss Concept MappingDat aElement i mplements Serializab le { | |
| 26 | ||
| 27 | pr ivate stat ic final l ong serial VersionUID = -105424 2260957965 843L; | |
| 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 = "concep t_uri") | |
| 35 | pr ivate Stri ng concept Uri; | |
| 36 | ||
| 37 | @C olumn(name = "data_e lement_id" ) | |
| 38 | pr ivate int dataElemen tId; | |
| 39 | ||
| 40 | @C olumn(name = "concep t_mapping_ id", inser table = fa lse, updat able = fal se) | |
| 41 | pr ivate int conceptMap pingId; | |
| 42 | ||
| 43 | @M anyToOne(f etch = Fet chType.EAG ER) | |
| 44 | @J oinColumn( name = "co ncept_mapp ing_id") | |
| 45 | pr ivate Conc eptMapping conceptMa pping; | |
| 46 | ||
| 47 | /* * | |
| 48 | * @return t he id | |
| 49 | * / | |
| 50 | pu blic int g etId() { | |
| 51 | retu rn id; | |
| 52 | } | |
| 53 | ||
| 54 | /* * | |
| 55 | * @param id | |
| 56 | * the id t o set | |
| 57 | * / | |
| 58 | pu blic void setId(int id) { | |
| 59 | this .id = id; | |
| 60 | } | |
| 61 | ||
| 62 | /* * | |
| 63 | * @return t he concept Uri | |
| 64 | * / | |
| 65 | pu blic Strin g getConce ptUri() { | |
| 66 | retu rn concept Uri; | |
| 67 | } | |
| 68 | ||
| 69 | /* * | |
| 70 | * @param co nceptUri | |
| 71 | * the conc eptUri to set | |
| 72 | * / | |
| 73 | pu blic void setConcept Uri(String conceptUr i) { | |
| 74 | this .conceptUr i = concep tUri; | |
| 75 | } | |
| 76 | ||
| 77 | /* * | |
| 78 | * @return t he dataEle mentId | |
| 79 | * / | |
| 80 | pu blic int g etDataElem entId() { | |
| 81 | retu rn dataEle mentId; | |
| 82 | } | |
| 83 | ||
| 84 | /* * | |
| 85 | * @param da taElementI d | |
| 86 | * the data ElementId to set | |
| 87 | * / | |
| 88 | pu blic void setDataEle mentId(int dataEleme ntId) { | |
| 89 | this .dataEleme ntId = dat aElementId ; | |
| 90 | } | |
| 91 | ||
| 92 | /* * | |
| 93 | * @return t he concept MappingId | |
| 94 | * / | |
| 95 | pu blic int g etConceptM appingId() { | |
| 96 | retu rn concept MappingId; | |
| 97 | } | |
| 98 | ||
| 99 | /* * | |
| 100 | * @param co nceptMappi ngId | |
| 101 | * the conc eptMapping Id to set | |
| 102 | * / | |
| 103 | pu blic void setConcept MappingId( int concep tMappingId ) { | |
| 104 | this .conceptMa ppingId = conceptMap pingId; | |
| 105 | } | |
| 106 | ||
| 107 | /* * | |
| 108 | * @return t he concept Mapping | |
| 109 | * / | |
| 110 | pu blic Conce ptMapping getConcept Mapping() { | |
| 111 | retu rn concept Mapping; | |
| 112 | } | |
| 113 | ||
| 114 | /* * | |
| 115 | * @param co nceptMappi ng | |
| 116 | * the conc eptMapping to set | |
| 117 | * / | |
| 118 | pu blic void setConcept Mapping(Co nceptMappi ng concept Mapping) { | |
| 119 | this .conceptMa pping = co nceptMappi ng; | |
| 120 | } | |
| 121 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.