33. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 9/11/2017 8:05:39 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.

33.1 Files compared

# Location File Last Modified
1 MHV_CIF_2017.4.0.0.zip\MHV_CIF_2017.4.0.0\MHV_CIF_2017.4.0.0\mhv_source\mhv_user\mhv-usermgmt-portal-portlet\src\main\java\gov\va\med\mhv\usermgmt\web\formbean RegistrationResult.java Wed May 31 20:46:32 2017 UTC
2 MHV_CIF_2017.4.0.0.zip\MHV_CIF_2017.4.0.0\MHV_CIF_2017.4.0.0\mhv_source\mhv_user\mhv-usermgmt-portal-portlet\src\main\java\gov\va\med\mhv\usermgmt\web\formbean RegistrationResult.java Thu Sep 7 19:12:36 2017 UTC

33.2 Comparison summary

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

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

33.4 Active regular expressions

No regular expressions were active.

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