3. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/24/2017 5:17:17 PM Eastern 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.

3.1 Files compared

# Location File Last Modified
1 MHV_2017.2.0.0 Code In Flight.zip\Admin Portal Redesign\mhv_admin\mhv-admin-portlet\src\main\java\gov\va\med\mhv\admin\web\util SessionUtil.java Fri Feb 10 18:05:28 2017 UTC
2 MHV_2017.2.0.0 Code In Flight.zip\Admin Portal Redesign\mhv_admin\mhv-admin-portlet\src\main\java\gov\va\med\mhv\admin\web\util SessionUtil.java Fri Mar 24 19:18:55 2017 UTC

3.2 Comparison summary

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

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

3.4 Active regular expressions

No regular expressions were active.

3.5 Comparison detail

  1   package go v.va.med.m hv.admin.w eb.util;
  2  
  3   import gov .va.med.mh v.admin.dt o.Employee DTO;
  4  
  5   public cla ss Session Util {
  6           
  7           /* *
  8            *  This meth od returns  the sessi on object  containing  the logge d-in user' s details.
  9            *  @return
  10            * /
  11           pu blic stati c Employee DTO getCur rentUser()  {
  12                    Empl oyeeDTO re sult = nul l;
  13                    
  14                    /*
  15                     * F or now
  16                     */
  17                    resu lt = new E mployeeDTO ();
  18                    resu lt.setFirs tName("Jas on");
  19                    resu lt.setLast Name("Hodg e");
  20                     result.set UserName(" DNS ");
  21                     result.set EmployeeId ( PII );
  22                    
  23                    
  24                    //re quest.getS ession().s etAttribut e("EMPLOYE E_DTO",emp DTO);
  25  
  26                    
  27                    /*
  28                     * T ODO: Retri eve from s ession
  29                     */
  30                    
  31                    
  32                    retu rn result;
  33           }
  34   }