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

43.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 ExportAsPDF.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 ExportAsPDF.java Thu Mar 28 17:50:44 2019 UTC

43.2 Comparison summary

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

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

43.4 Active regular expressions

No regular expressions were active.

43.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.a rs.model.r equest;
  5  
  6   import jav a.util.Str ingJoiner;
  7   /**
  8    * @author   DNS     BADGEB
  9    *
  10    */
  11   public cla ss ExportA sPDF {
  12           St ring vhaNa me;
  13           St ring attac hIdLx;
  14           /* *
  15            *  
  16            * /
  17           pu blic Expor tAsPDF() {
  18                    supe r();
  19                    // T ODO Auto-g enerated c onstructor  stub
  20           }
  21           /* *
  22            *  @param vh aName
  23            *  @param at tachIdLx
  24            * /
  25           pu blic Expor tAsPDF(Str ing vhaNam e, String  attachIdLx ) {
  26                    supe r();
  27                    this .vhaName =  vhaName;
  28                    this .attachIdL x = attach IdLx;
  29           }
  30  
  31           /* *
  32            *  @return t he vhaName
  33            * /
  34           pu blic Strin g getVhaNa me() {
  35                    retu rn vhaName ;
  36           }
  37  
  38           /* *
  39            *  @param vh aName
  40            *              the vhaN ame to set
  41            * /
  42           pu blic void  setVhaName (String vh aName) {
  43                    this .vhaName =  vhaName;
  44           }
  45  
  46           /* *
  47            *  @return t he attachI dLx
  48            * /
  49           pu blic Strin g getAttac hIdLx() {
  50                    retu rn attachI dLx;
  51           }
  52  
  53           /* *
  54            *  @param at tachIdLx
  55            *              the atta chIdLx to  set
  56            * /
  57           pu blic void  setAttachI dLx(String  attachIdL x) {
  58                    this .attachIdL x = attach IdLx;
  59           }
  60  
  61           /*
  62            *  (non-Java doc)
  63            *  
  64            *  @see java .lang.Obje ct#toStrin g()
  65            * /
  66           @O verride
  67           pu blic Strin g toString () {
  68                    Stri ngJoiner j oin = new  StringJoin er(", ", " ExportAsPD F [", "]") ;
  69                    join .add("vhaN ame=" + vh aName);
  70                    join .add("atta chIdLx=" +  attachIdL x);
  71                    retu rn join.to String();
  72           }
  73   }