16. EPMO Open Source Coordination Office Redaction File Detail Report

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

16.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 ChangePassword.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 ChangePassword.java Mon Jun 19 18:23:48 2017 UTC

16.2 Comparison summary

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

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

16.4 Active regular expressions

No regular expressions were active.

16.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   RED A C T ED
  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  =  REDACTED ;
  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   }