59. EPMO Open Source Coordination Office Redaction File Detail Report

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

59.1 Files compared

# Location File Last Modified
1 MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_user\mhv-usermgmt-portal-portlet\src\main\java\gov\va\med\mhv\usermgmt\web\formbean RegistrationResult.java Thu Feb 11 17:12:02 2016 UTC
2 MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_user\mhv-usermgmt-portal-portlet\src\main\java\gov\va\med\mhv\usermgmt\web\formbean RegistrationResult.java Fri Mar 24 20:46:51 2017 UTC

59.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 78
Changed 1 2
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   package go v.va.med.m hv.usermgm t.web.form bean;
  2  
  3   import jav a.io.Seria lizable;
  4  
  5   /**
  6    * Form be an for Use r Registra tion Resul t
  7    * 
  8    * @author  
P II
  9    */
  10   public cla ss Registr ationResul t implemen ts Seriali zable {
  11  
  12           pr ivate stat ic final l ong serial VersionUID  = 1L;
  13           pr ivate Stri ng userNam e;
  14           pr ivate Stri ng mhvId;
  15  
  16           pu blic Strin g getUserN ame() {
  17                    retu rn userNam e;
  18           }
  19  
  20           pu blic void  setUserNam e(String u serName) {
  21                    this .userName  = userName ;
  22           }
  23  
  24           pu blic Strin g getMhvId () {
  25                    retu rn mhvId;
  26           }
  27  
  28           pu blic void  setMhvId(S tring mhvI d) {
  29                    this .mhvId = m hvId;
  30           }
  31           
  32           pu blic Strin g toString () {
  33                    Stri ngBuffer s b = new St ringBuffer ();
  34                    sb.a ppend("=== ========== =========R egistratio nResult=== ========== ========== =====");
  35                    sb.a ppend("\nu serName :  " + this.u serName);
  36                    sb.a ppend("\nm hvId : " +  this.mhvI d);
  37                    
  38                    retu rn sb.toSt ring();
  39           }
  40   }