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

32.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 PasswordQuestionTypeCode.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 PasswordQuestionTypeCode.java Fri Mar 24 20:33:21 2017 UTC

32.2 Comparison summary

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

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

32.4 Active regular expressions

No regular expressions were active.

32.5 Comparison detail

  1   package go v.va.med.d omain.type code;
  2  
  3   /*
  4    * @author   PII
  5    *      Si nce: Septe mber 21, 2 005
  6    * @versio n $Id: Pas swordQuest ionTypeCod e.java,v 1 .1 2005/09 /22 14:56: 36 hong.xi  Exp $
  7    *
  8    */
  9   public cla ss Passwor dQuestionT ypeCode ex tends Nume ricTypeCod eAbstract  {
  10  
  11       public  static fi nal Passwo rdQuestion TypeCode B IRTH_TOWN  = new Pass wordQuesti onTypeCode (new Integ er(1), "Bi rth Town",
  12                "What is  the name  of the tow n in which  you were  born?");
  13  
  14       public  static fi nal Passwo rdQuestion TypeCode F AVORITE_FO OD = new P asswordQue stionTypeC ode(new In teger(2),  "Favorite  Food",
  15                "What is  your favo rite food? ");
  16  
  17       public  static fi nal Passwo rdQuestion TypeCode P ET_NAME =  new Passwo rdQuestion TypeCode(n ew Integer (3), "Pet  Name",
  18                "What is  your pet' s name?");
  19  
  20       public  static fi nal Passwo rdQuestion TypeCode F AVORITE_TE ACHER = ne w Password QuestionTy peCode(new  Integer(4 ), "Favori te Teacher ",
  21                "Who was  your favo rite teach er?");
  22  
  23       public  static fi nal Passwo rdQuestion TypeCode F AVORITE_AR TIST = new  PasswordQ uestionTyp eCode(new  Integer(5) , "Favorit e Artist",
  24                "Who is  your favor ite actor,  musician,  or artist ?");
  25  
  26       privat e Password QuestionTy peCode(Int eger code,  String la bel, Strin g descript ion) {
  27           su per(code,  label, des cription);
  28       }
  29   }