44. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/2/2019 1:06:54 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.

44.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\model\request GenericRequest.java Wed Mar 27 19:22:48 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\model\request GenericRequest.java Thu Mar 28 17:50:44 2019 UTC

44.2 Comparison summary

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

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

44.4 Active regular expressions

No regular expressions were active.

44.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.a rs.model.r equest;
  5  
  6   import jav a.util.Arr ayList;
  7   import jav a.util.Lis t;
  8  
  9   import com .fasterxml .jackson.a nnotation. JsonInclud e;
  10  
  11   /**
  12    * @author  
D NS     GANGAV
  13    *
  14    */
  15   public cla ss Generic Request {
  16  
  17           @J sonInclude (JsonInclu de.Include .NON_NULL)
  18           Li st<CodeAnd ModifierRe quest> loi ncList;
  19           @J sonInclude (JsonInclu de.Include .NON_NULL)
  20           Li st<CodeAnd ModifierRe quest> loi ncModList;
  21           @J sonInclude (JsonInclu de.Include .NON_NULL)
  22           Li st<CodeAnd ModifierRe quest> hcc List;
  23           /* *
  24            *  @return t he loincLi st
  25            * /
  26           pu blic List< CodeAndMod ifierReque st> getLoi ncList() {
  27                    retu rn loincLi st;
  28           }
  29           /* *
  30            *  @param lo incList th e loincLis t to set
  31            * /
  32           pu blic void  setLoincLi st(List<Co deAndModif ierRequest > loincLis t) {
  33                    if(l oincList = = null) {
  34                             this.l oincList =  new Array List<>();
  35                    } el se {
  36                             this.l oincList =  loincList ;
  37                    }
  38           }
  39           /* *
  40            *  @return t he loincMo dList
  41            * /
  42           pu blic List< CodeAndMod ifierReque st> getLoi ncModList( ) {
  43                    retu rn loincMo dList;
  44           }
  45           /* *
  46            *  @param lo incModList  the loinc ModList to  set
  47            * /
  48           pu blic void  setLoincMo dList(List <CodeAndMo difierRequ est> loinc ModList) {
  49                    if(l oincModLis t == null)  {
  50                             this.l oincModLis t = new Ar rayList<>( );
  51                    } el se {
  52                             this.l oincModLis t = loincM odList;
  53                    }
  54           }
  55           /* *
  56            *  @return t he hccList
  57            * /
  58           pu blic List< CodeAndMod ifierReque st> getHcc List() {
  59                    retu rn hccList ;
  60           }
  61           /* *
  62            *  @param hc cList the  hccList to  set
  63            * /
  64           pu blic void  setHccList (List<Code AndModifie rRequest>  hccList) {
  65                    if(h ccList ==  null) {
  66                             this.h ccList = n ew ArrayLi st<>();
  67                    } el se {
  68                             this.h ccList = h ccList;
  69                    }
  70           }
  71           
  72           
  73   }