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

6.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 UserProfileDeactivateReasonUtil.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 UserProfileDeactivateReasonUtil.java Thu Sep 7 18:50:06 2017 UTC

6.2 Comparison summary

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

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

6.4 Active regular expressions

No regular expressions were active.

6.5 Comparison detail

  1   package go v.va.med.m hv.admin.w eb.util;
  2  
  3  
  4   /**
  5    * @author   DN S      THUMMP
  6    *
  7    */
  8   public enu m UserProf ileDeactiv ateReasonU til {
  9           AP OSSIBLE("A 31 possibl e ICN Mism atch (do n ot reactiv ate)", 11) ,
  10           DO NOTREACTIV ATE("A43 p ossible IC N Mismatch  due to pa tient havi ng same IC N as anoth er patient  - (Do Not  Reactivat e)", 13),
  11           CU RRUPTEDDAT A("Corrupt ed Data (r esulting f rom VistA  extract)",  4),
  12           DE SEASED("De ceased", 1 ),
  13           HD EMERGENCY( "HD Emerge ncy Deacti vation", 1 2),
  14           IC NMISNATCH( "ICN Misma tch (do no t reactiva te)", 10),
  15           MU LTIPLEMHVA CCOUNTS("M ultiple MH V Accounts  Resolutio n", 3),
  16           MV IMERGE("MV I Merge Re quest", 9) ,
  17           MV ISTAFFREQU EST("MVI S taff Reque st", 8),
  18           PR OVIDERREQU EST("Provi der Reques t", 5), 
  19           US ERREQUEST( "User Requ est", 2);
  20           
  21           
  22           
  23  
  24           pr ivate Stri ng descrip tion;
  25           pr ivate int  value;
  26  
  27           pu blic Strin g getDescr iption() {
  28                    retu rn descrip tion;
  29           }
  30  
  31           pu blic void  setDescrip tion(Strin g descript ion) {
  32                    this .descripti on = descr iption;
  33           }
  34  
  35           pu blic int g etValue()  {
  36                    retu rn value;
  37           }
  38  
  39           pu blic void  setValue(i nt value)  {
  40                    this .value = v alue;
  41           }
  42  
  43           Us erProfileD eactivateR easonUtil( String des c, int val ) {
  44                    desc ription =  desc;
  45                    valu e = val;
  46           }
  47  
  48   }