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

12.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-api\src\main\java\gov\va\med\mhv\usermgmt\common\enums MonthDayEnumeration.java Sat Jun 3 17:35:22 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-api\src\main\java\gov\va\med\mhv\usermgmt\common\enums MonthDayEnumeration.java Mon Jun 19 18:17:22 2017 UTC

12.2 Comparison summary

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

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

12.4 Active regular expressions

No regular expressions were active.

12.5 Comparison detail

  1   package go v.va.med.m hv.usermgm t.common.e nums;
  2  
  3   /**
  4    * @author   RED A C T ED
  5    *
  6    */
  7   public enu m MonthDay Enumeratio n {
  8           D1 ("1"),
  9           D2 ("2"),
  10           D3 ("3"),
  11           D4 ("4"),
  12           D5 ("5"),
  13           D6 ("6"),
  14           D7 ("7"),
  15           D8 ("8"),
  16           D9 ("9"),
  17           D1 0("10"),
  18           D1 1("11"),
  19           D1 2("12"),
  20           D1 3("13"),
  21           D1 4("14"),
  22           D1 5("15"),
  23           D1 6("16"),
  24           D1 7("17"),
  25           D1 8("18"),
  26           D1 9("19"),
  27           D2 0("20"),
  28           D2 1("21"),
  29           D2 2("22"),
  30           D2 3("23"),
  31           D2 4("24"),
  32           D2 5("25"),
  33           D2 6("26"),
  34           D2 7("27"),
  35           D2 8("28"),
  36           D2 9("29"),
  37           D3 0("30"),
  38           D3 1("31");
  39           
  40           St ring descr iption;
  41  
  42           Mo nthDayEnum eration(St ring desc)  {
  43                    desc ription =  desc;
  44           }
  45  
  46           pu blic Strin g getDescr iption() {
  47                    retu rn descrip tion;
  48           }
  49  
  50           pu blic void  setDescrip tion(Strin g descript ion) {
  51                    this .descripti on = descr iption;
  52           }
  53   }