17. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/20/2017 7:20:07 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.

17.1 Files compared

# Location File Last Modified
1 CIF_MHV_2017.3.0.0_SW_Docx.zip\CIF_MHV_2017.3.0.0.zip\mhv_source\mhv_user\mhv-usermgmt-portal-portlet\src\main\java\gov\va\med\mhv\usermgmt\web\formbean RegistrationResult.java Sat Jun 3 17:35:26 2017 UTC
2 CIF_MHV_2017.3.0.0_SW_Docx.zip\CIF_MHV_2017.3.0.0.zip\mhv_source\mhv_user\mhv-usermgmt-portal-portlet\src\main\java\gov\va\med\mhv\usermgmt\web\formbean RegistrationResult.java Mon Jun 19 18:24:02 2017 UTC

17.2 Comparison summary

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

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

17.4 Active regular expressions

No regular expressions were active.

17.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   RED A C T ED
  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           pr ivate Stri ng alterna teWebsite;
  16           pr ivate Stri ng account CreatedDat e;
  17  
  18           pu blic Strin g getUserN ame() {
  19                    retu rn userNam e;
  20           }
  21  
  22           pu blic void  setUserNam e(String u serName) {
  23                    this .userName  = userName ;
  24           }
  25  
  26           pu blic Strin g getMhvId () {
  27                    retu rn mhvId;
  28           }
  29  
  30           pu blic void  setMhvId(S tring mhvI d) {
  31                    this .mhvId = m hvId;
  32           }
  33           
  34           pu blic Strin g getAlter nateWebsit e() {
  35                    retu rn alterna teWebsite;
  36           }
  37  
  38           pu blic void  setAlterna teWebsite( String alt ernateWebs ite) {
  39                    this .alternate Website =  alternateW ebsite;
  40           }
  41  
  42           pu blic Strin g getAccou ntCreatedD ate() {
  43                    retu rn account CreatedDat e;
  44           }
  45  
  46           pu blic void  setAccount CreatedDat e(String a ccountCrea tedDate) {
  47                    this .accountCr eatedDate  = accountC reatedDate ;
  48           }
  49  
  50           pu blic Strin g toString () {
  51                    Stri ngBuffer s b = new St ringBuffer ();
  52                    sb.a ppend("=== ========== =========R egistratio nResult=== ========== ========== =====");
  53                    sb.a ppend("\nu serName :  " + this.u serName);
  54                    sb.a ppend("\nm hvId : " +  this.mhvI d);
  55                    sb.a ppend("\na lteranteWe bsite : "  + this.get AlternateW ebsite());
  56                    sb.a ppend("\na ccountCrea tedDate :  " + this.g etAccountC reatedDate ());
  57                    
  58                    retu rn sb.toSt ring();
  59           }
  60   }