30. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/24/2017 5:17:18 PM 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.

30.1 Files compared

# Location File Last Modified
1 MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_rxrefill\mhv-rx-refill-portal-main\src\main\java\gov\va\med\domain\typecode ContactMethodTypeCode.java Thu Feb 11 17:10:26 2016 UTC
2 MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_rxrefill\mhv-rx-refill-portal-main\src\main\java\gov\va\med\domain\typecode ContactMethodTypeCode.java Fri Mar 24 20:33:05 2017 UTC

30.2 Comparison summary

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

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

30.4 Active regular expressions

No regular expressions were active.

30.5 Comparison detail

  1   package go v.va.med.d omain.type code;
  2  
  3   /*
  4    * @author   PII
  5    *               Date : May 6, 2 005
  6    * @versio n $Id: Con tactMethod TypeCode.j ava,v 1.1. 1.1 2005/0 5/13 19:40 :45 jon.cr ater Exp $
  7    *
  8    */
  9   public cla ss Contact MethodType Code exten ds AlphaNu mericTypeC odeAbstrac t {
  10  
  11           pu blic stati c final Co ntactMetho dTypeCode  WORK_PHONE  = new Con tactMethod TypeCode(" WP", "Work  Phone",
  12                             "Work  Phone");
  13  
  14           pu blic stati c final Co ntactMetho dTypeCode  HOME_PHONE  = new Con tactMethod TypeCode(" HP", "Home  Phone",
  15                             "Home  Phone");
  16           
  17           pu blic stati c final Co ntactMetho dTypeCode  PAGER_NUMB ER = new C ontactMeth odTypeCode ("PN", "Pa ger Number ", 
  18                             "Pager  Number");
  19           
  20           pu blic stati c final Co ntactMetho dTypeCode  CELL_PHONE  = new Con tactMethod TypeCode(" CP", "Cell  Phone",
  21                             "Cell  Phone");
  22           
  23           pu blic stati c final Co ntactMetho dTypeCode  FAX_NUMBER  = new Con tactMethod TypeCode(" FN", "FAX  Number", 
  24                             "FAX N umber");
  25           
  26           pu blic stati c final Co ntactMetho dTypeCode  EMAIL = ne w ContactM ethodTypeC ode("E", " Email Addr ess",
  27                             "Email  Address") ;
  28           
  29           pu blic stati c final Co ntactMetho dTypeCode  PRE_APPROV AL_PHONE =  new Conta ctMethodTy peCode("PA ", 
  30                             "Pre-a pproval Ph one", "Pre -approval  Phone");
  31           
  32           pr ivate Cont actMethodT ypeCode(St ring metho dType, Str ing label,  String de scription)  {
  33                    supe r(methodTy pe, label,  descripti on);
  34           }
  35           
  36           pu blic boole an isWorkP hone() {
  37                    retu rn WORK_PH ONE == thi s;
  38           }
  39  
  40           pu blic boole an isEmail () {
  41                    retu rn EMAIL = = this;
  42           }
  43   }