3. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 9/11/2017 8:05:37 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.

3.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\ap_redesign\mhv_source\mhv_admin\mhv-admin-portlet\src\main\java\gov\va\med\mhv\admin\web\util PasswordHintQuestionsEnumeration.java Wed Jul 5 17:41:58 2017 UTC
2 MHV_CIF_2017.4.0.0.zip\MHV_CIF_2017.4.0.0\MHV_CIF_2017.4.0.0\ap_redesign\mhv_source\mhv_admin\mhv-admin-portlet\src\main\java\gov\va\med\mhv\admin\web\util PasswordHintQuestionsEnumeration.java Thu Sep 7 18:50:04 2017 UTC

3.2 Comparison summary

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

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

3.4 Active regular expressions

No regular expressions were active.

3.5 Comparison detail

  1   package go v.va.med.m hv.admin.w eb.util;
  2  
  3   /**
  4    * @author   DN S      THUMMP
  5    *
  6    */
  7   public enu m Password HintQuesti onsEnumera tion {
  8           HI NT_Q_1("In  what city  did you m eet your s pouse/sign ificant ot her?",7),
  9                    HINT _Q_2("In w hat city d oes your n earest sib ling live? ",17),
  10                    HINT _Q_3("In w hat city o r town was  your firs t job?",20 ),
  11                    HINT _Q_4("What  is the mi ddle name  of your ol dest child ?",11),
  12                    HINT _Q_5("What  is the na me of a co llege you  applied to  but didn' t attend?" ,22),
  13                    HINT _Q_6("What  is the na me of the  place your  wedding r eception w as held?", 21),
  14                    HINT _Q_7("What  is the na me of town  in which  you were b orn?",1),
  15                    HINT _Q_8("What  is the na me of your  favorite  childhood  friend?",8 ),
  16                    HINT _Q_9("What  is your f avorite fo od?",2),
  17                    HINT _Q_10("Wha t is your  maternal g randmother 's maiden  name?",19) ,
  18                    HINT _Q_11("Wha t is your  oldest bro ther's bir thday mont h and year ? (e.g., J anuary 190 0)",18),
  19                    HINT _Q_12("Wha t is your  oldest cou sin's firs t and last  name?",14 ),
  20                    HINT _Q_13("Wha t is your  oldest sib ling's bir thday mont h and year ? (e.g., J anuary 190 0)",10),
  21                    HINT _Q_14("Wha t is your  oldest sib ling's mid dle name?" ,12),
  22                    HINT _Q_15("Wha t is your  pet's name ?",3),
  23                    HINT _Q_16("Wha t school d id you att end for si xth grade? ",13),
  24                    HINT _Q_17("Wha t street d id you liv e on in th ird grade? ",9),
  25                    HINT _Q_18("Wha t was the  last name  of your th ird grade  teacher?", 16),
  26                    HINT _Q_19("Wha t was the  name of yo ur first s tuffed ani mal?",15),
  27                    HINT _Q_20("Wha t was your  childhood  nickname? ",6),
  28                    HINT _Q_21("Who  is your f avorite ac tor, music ian, or ar tist?",5),
  29                    HINT _Q_22("Who  was your  favorite t eacher?",4 );
  30  
  31           pr ivate Stri ng descrip tion;
  32           pr ivate int  value;
  33  
  34           pu blic Strin g getDescr iption() {
  35                    retu rn descrip tion;
  36           }
  37  
  38           pu blic void  setDescrip tion(Strin g descript ion) {
  39                    this .descripti on = descr iption;
  40           }
  41  
  42           pu blic int g etValue()  {
  43                    retu rn value;
  44           }
  45  
  46           pu blic void  setValue(i nt value)  {
  47                    this .value = v alue;
  48           }
  49  
  50           Pa sswordHint QuestionsE numeration (String de sc, int va l){
  51                    desc ription =  desc;
  52                    valu e=val;
  53           }
  54   }