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

37.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\file BlobSetter.java Wed Mar 27 19:21:11 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\file BlobSetter.java Thu Mar 28 17:50:42 2019 UTC

37.2 Comparison summary

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

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

37.4 Active regular expressions

No regular expressions were active.

37.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.a rs.file;
  5  
  6   /**
  7    * @author  
D NS     GANGAV
  8    *
  9    */
  10   public cla ss BlobSet ter {
  11  
  12           Bo olean succ ess;
  13           St ring messa ge;
  14  
  15           /* *
  16            *  
  17            * /
  18           pu blic BlobS etter() {
  19                    supe r();
  20                    // T ODO Auto-g enerated c onstructor  stub
  21           }
  22  
  23           /* *
  24            *  @param su ccess
  25            *  @param me ssage
  26            * /
  27           pu blic BlobS etter(Bool ean succes s, String  message) {
  28                    supe r();
  29                    this .success =  success;
  30                    this .message =  message;
  31           }
  32  
  33           /* *
  34            *  @return t he success
  35            * /
  36           pu blic Boole an getSucc ess() {
  37                    retu rn success ;
  38           }
  39  
  40           /* *
  41            *  @param su ccess
  42            *              the succ ess to set
  43            * /
  44           pu blic void  setSuccess (Boolean s uccess) {
  45                    this .success =  success;
  46           }
  47  
  48           /* *
  49            *  @return t he message
  50            * /
  51           pu blic Strin g getMessa ge() {
  52                    retu rn message ;
  53           }
  54  
  55           /* *
  56            *  @param st r
  57            *              the mess age to set
  58            * /
  59           pu blic void  setMessage (String st r) {
  60                    this .message =  str;
  61           }
  62  
  63   }