7. EPMO Open Source Coordination Office Redaction File Detail Report

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

7.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\ap_redesign\mhv_source\mhv_admin\mhv-admin-portlet\src\main\java\gov\va\med\mhv\admin\web\util UserProfileReactivateReasonUtil.java Fri Jul 21 21:10:56 2017 UTC
2 MHV_CIF_2017.4.0.0.zip\MHV_CIF_2017.4.0.0\MHV_CIF_2017.4.0.0\ap_redesign\mhv_source\mhv_admin\mhv-admin-portlet\src\main\java\gov\va\med\mhv\admin\web\util UserProfileReactivateReasonUtil.java Thu Sep 7 18:50:06 2017 UTC

7.2 Comparison summary

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

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

7.4 Active regular expressions

No regular expressions were active.

7.5 Comparison detail

  1   package go v.va.med.m hv.admin.w eb.util;
  2  
  3   /**
  4    * @author   DN S      THUMMP
  5    *
  6    */
  7   public enu m UserProf ileReactiv ateReasonU til {
  8           MV IMERGE("MV I Merge Re quest", 9) ,
  9           DE SEASED("De ceased", 1 ),
  10           US ERREQUEST( "User Requ est", 2),
  11           MU LTIPLEMHVA CCOUNTS("M ultiple MH V Accounts  Resolutio n", 3),
  12           CU RRUPTEDDAT A("Corrupt ed Data (r esulting f rom VistA  extract)",  4),
  13           PR OVIDERREQU EST("Provi der Reques t", 5),
  14           MV ISTAFFREQU EST("MVI S taff Reque st", 8);
  15           
  16           pr ivate Stri ng descrip tion;
  17           pr ivate int  value;
  18  
  19           pu blic Strin g getDescr iption() {
  20                    retu rn descrip tion;
  21           }
  22  
  23           pu blic void  setDescrip tion(Strin g descript ion) {
  24                    this .descripti on = descr iption;
  25           }
  26  
  27           pu blic int g etValue()  {
  28                    retu rn value;
  29           }
  30  
  31           pu blic void  setValue(i nt value)  {
  32                    this .value = v alue;
  33           }
  34  
  35           Us erProfileR eactivateR easonUtil( String des c, int val ) {
  36                    desc ription =  desc;
  37                    valu e = val;
  38           }
  39   }