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

27.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-api\src\main\java\gov\va\med\mhv\usermgmt\common\enums MonthEnumeration.java Tue May 2 23:46:20 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-api\src\main\java\gov\va\med\mhv\usermgmt\common\enums MonthEnumeration.java Thu Sep 7 19:08:45 2017 UTC

27.2 Comparison summary

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

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

27.4 Active regular expressions

No regular expressions were active.

27.5 Comparison detail

  1   package go v.va.med.m hv.usermgm t.common.e nums;
  2  
  3   /**
  4    * @author   DN S      THUMMP
  5    *
  6    */
  7   public enu m MonthEnu meration {
  8           JA N("Jan", 1 ),
  9           FE B("Feb", 2 ),
  10           MA R("Mar", 3 ),
  11           AP R("Apr", 4 ),
  12           MA Y("May", 5 ),
  13           JU N("Jun", 6 ),
  14           JU L("Jul", 7 ),
  15           AU G("Aug", 8 ),
  16           SE P("Sep", 9 ),
  17           OC T("Oct", 1 0),
  18           NO V("Nov", 1 1),
  19           DE C("Dec", 1 2);
  20           
  21           pr ivate Stri ng descrip tion;
  22           pr ivate int  value;
  23  
  24           pu blic Strin g getDescr iption() {
  25                    retu rn descrip tion;
  26           }
  27  
  28           pu blic void  setDescrip tion(Strin g descript ion) {
  29                    this .descripti on = descr iption;
  30           }
  31  
  32           pu blic int g etValue()  {
  33                    retu rn value;
  34           }
  35  
  36           pu blic void  setValue(i nt value)  {
  37                    this .value = v alue;
  38           }
  39  
  40           Mo nthEnumera tion(Strin g desc, in t val) {
  41                    desc ription =  desc;
  42                    valu e = val;
  43           }
  44   }