54. EPMO Open Source Coordination Office Redaction File Detail Report

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

54.1 Files compared

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

54.2 Comparison summary

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

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

54.4 Active regular expressions

No regular expressions were active.

54.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.a rs.model.r esponse;
  5  
  6   import jav a.util.Lis t;
  7  
  8   /**
  9    * @author  
D NS     GANGAV
  10    *
  11    */
  12   public cla ss PdiRela tedInfoRes ponse {
  13           
  14           Li st<String>  attachmen tPath;
  15           St ring attac hmentId;
  16           St ring repor tCode;
  17           St ring repor tDefinitio n;
  18           /* *
  19            *  
  20            * /
  21           pu blic PdiRe latedInfoR esponse()  {
  22                    supe r();
  23                    // T ODO Auto-g enerated c onstructor  stub
  24           }
  25           /* *
  26            *  @param at tachmentPa th
  27            *  @param at tachmentId
  28            *  @param re portCode
  29            *  @param re portDefini tion
  30            * /
  31           pu blic PdiRe latedInfoR esponse(Li st<String>  attachmen tPath, Str ing attach mentId, St ring repor tCode,
  32                             String  reportDef inition) {
  33                    supe r();
  34                    this .attachmen tPath = at tachmentPa th;
  35                    this .attachmen tId = atta chmentId;
  36                    this .reportCod e = report Code;
  37                    this .reportDef inition =  reportDefi nition;
  38           }
  39           /* *
  40            *  @return t he attachm entPath
  41            * /
  42           pu blic List< String> ge tAttachmen tPath() {
  43                    retu rn attachm entPath;
  44           }
  45           /* *
  46            *  @param at tachmentPa th the att achmentPat h to set
  47            * /
  48           pu blic void  setAttachm entPath(Li st<String>  attachmen tPath) {
  49                    this .attachmen tPath = at tachmentPa th;
  50           }
  51           /* *
  52            *  @return t he attachm entId
  53            * /
  54           pu blic Strin g getAttac hmentId()  {
  55                    retu rn attachm entId;
  56           }
  57           /* *
  58            *  @param at tachmentId  the attac hmentId to  set
  59            * /
  60           pu blic void  setAttachm entId(Stri ng attachm entId) {
  61                    this .attachmen tId = atta chmentId;
  62           }
  63           /* *
  64            *  @return t he reportC ode
  65            * /
  66           pu blic Strin g getRepor tCode() {
  67                    retu rn reportC ode;
  68           }
  69           /* *
  70            *  @param re portCode t he reportC ode to set
  71            * /
  72           pu blic void  setReportC ode(String  reportCod e) {
  73                    this .reportCod e = report Code;
  74           }
  75           /* *
  76            *  @return t he reportD efinition
  77            * /
  78           pu blic Strin g getRepor tDefinitio n() {
  79                    retu rn reportD efinition;
  80           }
  81           /* *
  82            *  @param re portDefini tion the r eportDefin ition to s et
  83            * /
  84           pu blic void  setReportD efinition( String rep ortDefinit ion) {
  85                    this .reportDef inition =  reportDefi nition;
  86           }
  87   }