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

32.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 ChangePassword.java Tue May 2 23:46:24 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 ChangePassword.java Thu Sep 7 19:12:35 2017 UTC

32.2 Comparison summary

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

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

32.4 Active regular expressions

No regular expressions were active.

32.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.m hv.usermgm t.web.form bean;
  5  
  6   import jav a.io.Seria lizable;
  7  
  8   import org .springfra mework.ste reotype.Co mponent;
  9  
  10   /**
  11    * @author   DN S      THUMMP
  12    * 
  13    */
  14   @Component
  15   public cla ss ChangeP assword im plements S erializabl e {
  16  
  17           /* *
  18            *  
  19            * /
  20           pr ivate stat ic final l ong serial VersionUID  = 4398006 4514016451 61L;
  21           
  22           pr ivate Stri ng current Password;
  23           pr ivate Stri ng newPass word;
  24           pr ivate Stri ng confirm NewPasswor d;
  25  
  26           pu blic Chang ePassword( ) {
  27  
  28           }
  29  
  30           pu blic Strin g getCurre ntPassword () {
  31                    retu rn current Password;
  32           }
  33  
  34           pu blic void  setCurrent Password(S tring curr entPasswor d) {
  35                    this .currentPa ssword = c urrentPass word;
  36           }
  37  
  38           pu blic Strin g getNewPa ssword() {
  39                    retu rn newPass word;
  40           }
  41  
  42           pu blic void  setNewPass word(Strin g newPassw ord) {
  43                    this .newPasswo rd = newPa ssword;
  44           }
  45  
  46           pu blic Strin g getConfi rmNewPassw ord() {
  47                    retu rn confirm NewPasswor d;
  48           }
  49  
  50           pu blic void  setConfirm NewPasswor d(String c onfirmNewP assword) {
  51                    this .confirmNe wPassword  = confirmN ewPassword ;
  52           }
  53   }