34. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 7/20/2018 12:56:41 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.

34.1 Files compared

# Location File Last Modified
1 CTT_Release_8_June_2018.zip\CTT_ISAAC\ISAAC\hl7-messaging\src\main\java\gov\vha\isaac\ochre\services\dto\publish PublishRegionDTO.java Tue Jul 17 16:29:12 2018 UTC
2 CTT_Release_8_June_2018.zip\CTT_ISAAC\ISAAC\hl7-messaging\src\main\java\gov\vha\isaac\ochre\services\dto\publish PublishRegionDTO.java Wed Jul 18 19:05:42 2018 UTC

34.2 Comparison summary

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

34.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

34.4 Active regular expressions

No regular expressions were active.

34.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   /**
  25    * @author   PI I
  26    *
  27    */
  28   public cla ss Publish RegionDTO  implements  Serializa ble
  29   {
  30           pr ivate Stri ng regionN ame;
  31           pr ivate List <PublishCo nceptDTO>  publishCon ceptDTOLis t;
  32  
  33           pu blic Publi shRegionDT O(String r egionName,  List<Publ ishConcept DTO> publi shConceptD TOList) {
  34                    supe r();
  35                    this .regionNam e = region Name;
  36                    this .publishCo nceptDTOLi st = publi shConceptD TOList;
  37           }
  38  
  39           /* *
  40            *  @return t he publish ConceptDTO List
  41            * /
  42           pu blic List< PublishCon ceptDTO> g etPublishC onceptDTOL ist() {
  43                    retu rn publish ConceptDTO List;
  44           }
  45  
  46           /* *
  47            *  @param pu blishConce ptDTOList
  48            *              the publ ishConcept DTOList to  set
  49            * /
  50           pu blic void  setPublish ConceptDTO List(List< PublishCon ceptDTO> p ublishConc eptDTOList ) {
  51                    this .publishCo nceptDTOLi st = publi shConceptD TOList;
  52           }
  53  
  54           /* *
  55            *  @return t he regionN ame
  56            * /
  57           pu blic Strin g getRegio nName() {
  58                    retu rn regionN ame;
  59           }
  60  
  61           /* *
  62            *  @param re gionName
  63            *              the regi onName to  set
  64            * /
  65           pu blic void  setRegionN ame(String  regionNam e) {
  66                    this .regionNam e = region Name;
  67           }
  68  
  69   }