59. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/25/2019 8:58:04 AM 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.

59.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\IMAG_Source\VISA\Java\ViewerImagingCommon\main\src\java\gov\va\med\imaging\viewer\business CaptureUserResult.java Mon Mar 18 20:39:10 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\IMAG_Source\VISA\Java\ViewerImagingCommon\main\src\java\gov\va\med\imaging\viewer\business CaptureUserResult.java Tue Mar 19 12:04:06 2019 UTC

59.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 96
Changed 2 4
Inserted 0 0
Removed 0 0

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

59.4 Active regular expressions

No regular expressions were active.

59.5 Comparison detail

  1   /**
  2    * Date Cr eated: Apr  12, 2018
  3    * Develop er:  DNS     tjahjb
  4    */
  5   package go v.va.med.i maging.vie wer.busine ss;
  6  
  7   import jav a.util.Dat e;
  8  
  9   /**
  10    * @author   DNS     tjahjb
  11    *
  12    */
  13   public cla ss Capture UserResult
  14   {
  15           pr ivate fina l String u serId;
  16           pr ivate fina l String u serName;
  17  
  18           /* *
  19            *  @param us erId
  20            *  @param us erName
  21            * /
  22           pu blic Captu reUserResu lt(
  23                             String  userId,
  24                             String  userName)
  25           {
  26                    supe r();
  27                    this .userId =  userId;
  28                    this .userName  = userName ;
  29           }
  30  
  31           /* *
  32            *  @return t he userId
  33            * /
  34           pu blic Strin g getUserI d()
  35           {
  36                    retu rn userId;
  37           }
  38  
  39           /* *
  40            *  @return t he userNam e
  41            * /
  42           pu blic Strin g getUserN ame()
  43           {
  44                    retu rn userNam e;
  45           }
  46  
  47   }
  48  
  49  
  50