49. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:09 AM Eastern 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.

49.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\service\common JobDescription.java Wed May 29 15:26:02 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\service\common JobDescription.java Mon Jun 10 19:20:40 2019 UTC

49.2 Comparison summary

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

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

49.4 Active regular expressions

No regular expressions were active.

49.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.c cht.servic e.common;
  5  
  6   /**
  7    * @author   DNS
  8    */
  9   public enu m JobDescr iption {
  10  
  11   //      CA RE_COORDIN ATOR("Care  Coordinat or","2"),
  12   //      LE AD_CARE_CO ORDINATOR( "Lead Care  Coordinat or","1"),
  13   //      MA NAGEMENT(" Management ","4"),
  14   //      NA C("NAC","6 "),
  15   //      PS A("Program  Support A ssistant", "3"),
  16   //      VE NDOR("Vend or","5"),
  17   //      DM P_CONTRIBU TOR("DMP C ontributor ","7"),
  18   //      ST TC_STAFF(" STTC Staff ","8");
  19           
  20           PR OGRAM_ASSI STANT("Pro gram Assis tant", "1" ),
  21           CA RE_COORDIN ATOR("Care  Coordinat or", "2"),
  22           FA CILITY_ADM IN("Facili ty Adminis trator", " 3"),
  23           VI SN_ADMIN(" VISN Admin istrator",  "4"),
  24           NA TIONAL_ADM IN("Nation al Adminis trator", " 5"),
  25           VE NDOR("Vend or", "6");   
  26            
  27           pr ivate Stri ng key;
  28           pr ivate Stri ng value;
  29  
  30           pr ivate JobD escription (String ke y, String  value) {
  31                    this .key = key ;
  32                    this .value = v alue;
  33           }
  34  
  35           /* *
  36            *  @return t he value
  37            * /
  38           pu blic Strin g getValue () {
  39                    retu rn value;
  40           }
  41  
  42           /* *
  43            *  @return t he key
  44            * /
  45           pu blic Strin g getKey()  {
  46                    retu rn key;
  47           }
  48   }