42. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/29/2017 4:53:21 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.

42.1 Files compared

# Location File Last Modified
1 CTT-DM CIF Submission.zip\code\ISAAC\hl7-messaging\src\main\java\gov\vha\isaac\ochre\services\dto\publish PublishConceptDTO.java Fri Mar 3 16:20:19 2017 UTC
2 CTT-DM CIF Submission.zip\code\ISAAC\hl7-messaging\src\main\java\gov\vha\isaac\ochre\services\dto\publish PublishConceptDTO.java Wed Mar 29 15:08:33 2017 UTC

42.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 280
Changed 1 2
Inserted 0 0
Removed 0 0

42.3 Comparison options

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

42.4 Active regular expressions

No regular expressions were active.

42.5 Comparison detail

  1   /**
  2    * Copyrig ht Notice
  3    *
  4    * This is  a work of  the U.S.  Government  and is no t subject  to copyrig ht
  5    * protect ion in the  United St ates. Fore ign copyri ghts may a pply.
  6    *
  7    * License d under th e Apache L icense, Ve rsion 2.0  (the "Lice nse");
  8    * you may  not use t his file e xcept in c ompliance  with the L icense.
  9    * You may  obtain a  copy of th e License  at
  10    *
  11    * http:// www.apache .org/licen ses/LICENS E-2.0
  12    *
  13    * Unless  required b y applicab le law or  agreed to  in writing , software
  14    * distrib uted under  the Licen se is dist ributed on  an "AS IS " BASIS,
  15    * WITHOUT  WARRANTIE S OR CONDI TIONS OF A NY KIND, e ither expr ess or imp lied.
  16    * See the  License f or the spe cific lang uage gover ning permi ssions and
  17    * limitat ions under  the Licen se.
  18    */
  19   package go v.vha.isaa c.ochre.se rvices.dto .publish;
  20  
  21   import jav a.io.Seria lizable;
  22   import jav a.util.Lis t;
  23  
  24   import gov .vha.isaac .ochre.ser vices.busi ness.DataC hange.Data ChangeType ;
  25  
  26   /**
  27    * @author   DN S      DN S
  28    *
  29    */
  30   public cla ss Publish ConceptDTO  implement s Serializ able
  31   {
  32           pr ivate Stri ng publish Name;
  33           pr ivate Long  vuid;
  34           pr ivate bool ean active ;
  35           pr ivate Data ChangeType  changeTyp e;
  36           pr ivate List <NameValue DTO> prope rtyList;
  37           pr ivate List <NameValue DTO> relat ionshipLis t;
  38           pr ivate List <NameValue DTO> desig nationList ;
  39  
  40           /* *
  41            *  @return t he active
  42            * /
  43           pu blic boole an isActiv e() {
  44                    retu rn active;
  45           }
  46  
  47           /* *
  48            *  @param ac tive
  49            *              the acti ve to set
  50            * /
  51           pu blic void  setActive( boolean ac tive) {
  52                    this .active =  active;
  53           }
  54  
  55           /* *
  56            *  @return t he propert yList
  57            * /
  58           pu blic List< NameValueD TO> getPro pertyList( ) {
  59                    retu rn propert yList;
  60           }
  61  
  62           /* *
  63            *  @param pr opertyList
  64            *              the prop ertyList t o set
  65            * /
  66           pu blic void  setPropert yList(List <NameValue DTO> prope rtyList) {
  67                    this .propertyL ist = prop ertyList;
  68           }
  69  
  70           /* *
  71            *  @return t he publish Name
  72            * /
  73           pu blic Strin g getPubli shName() {
  74                    retu rn publish Name;
  75           }
  76  
  77           /* *
  78            *  @param pu blishName
  79            *              the publ ishName to  set
  80            * /
  81           pu blic void  setPublish Name(Strin g publishN ame) {
  82                    this .publishNa me = publi shName;
  83           }
  84  
  85           /* *
  86            *  @return t he relatio nshipList
  87            * /
  88           pu blic List< NameValueD TO> getRel ationshipL ist() {
  89                    retu rn relatio nshipList;
  90           }
  91  
  92           /* *
  93            *  @param re lationship List
  94            *              the rela tionshipLi st to set
  95            * /
  96           pu blic void  setRelatio nshipList( List<NameV alueDTO> r elationshi pList) {
  97                    this .relations hipList =  relationsh ipList;
  98           }
  99  
  100           /* *
  101            *  Get the d esignation  list
  102            *  
  103            *  @return t he designa tion list
  104            * /
  105           pu blic List< NameValueD TO> getDes ignationLi st() {
  106                    retu rn designa tionList;
  107           }
  108  
  109           /* *
  110            *  Set the d esignation  list
  111            *  
  112            *  @param de signationL ist
  113            *              to set
  114            * /
  115           pu blic void  setDesigna tionList(L ist<NameVa lueDTO> de signationL ist) {
  116                    this .designati onList = d esignation List;
  117           }
  118  
  119           /* *
  120            *  @return t he vuid
  121            * /
  122           pu blic Long  getVuid()  {
  123                    retu rn vuid;
  124           }
  125  
  126           /* *
  127            *  @param vu id
  128            *              the vuid  to set
  129            * /
  130           pu blic void  setVuid(Lo ng vuid) {
  131                    this .vuid = vu id;
  132           }
  133  
  134           pu blic DataC hangeType  getChangeT ype() {
  135                    retu rn changeT ype;
  136           }
  137  
  138           pu blic void  setChangeT ype(DataCh angeType c hangeType)  {
  139                    this .changeTyp e = change Type;
  140           }
  141   }