9. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 2/7/2017 12:14:05 PM Eastern Standard 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.

9.1 Files compared

# Location File Last Modified
1 cpss.zip\cpss\src\main\java\gov\va\cpss\dao ICNHistoryStatusDAO.java Wed Feb 1 21:07:24 2017 UTC
2 cpss.zip\cpss\src\main\java\gov\va\cpss\dao ICNHistoryStatusDAO.java Fri Feb 3 20:30:28 2017 UTC

9.2 Comparison summary

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

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

9.4 Active regular expressions

No regular expressions were active.

9.5 Comparison detail

  1   package go v.va.cpss. dao;
  2  
  3   import jav a.util.Lis t;
  4  
  5   import gov .va.cpss.m odel.icn.I CNHistoryS tatus;
  6  
  7   /**
  8    * Data Ac cess Objec t interfac e for the  ICNHistory Status tab le.
  9    * 
  10    * @author   DN S      P II
  11    */
  12   public int erface ICN HistorySta tusDAO {
  13  
  14           /* *
  15            *  Initializ e the look up mapping s to corre late enume ration and  data valu es
  16            *  in the da tabase.
  17            * /
  18           pu blic void  initTypeMa ps();
  19  
  20           /* *
  21            *  Get a lis t of statu s from the  database.
  22            *  
  23            *  @return L ist of ICN HistorySta tus from t he databas e.
  24            * /
  25           pu blic List< ICNHistory Status> st atusTypeLi st();
  26  
  27           /* *
  28            *  Get a sta tus type f rom the sp ecified ID .
  29            *  
  30            *  @param id
  31            *              Status I D data val ue associa ted with t he databas e record.
  32            *  @return I CNHistoryS tatus obje ct associa ted with t he ID valu e.
  33            * /
  34           pu blic ICNHi storyStatu s getStatu sType(int  id);
  35  
  36           /* *
  37            *  Get a ICN HistorySta tus from t he specifi ed enumera tion.
  38            *  
  39            *  @param en umValue
  40            *              Status e num value.
  41            *  @return I CNHistoryS tatus obje ct associa ted with t he enumera ted value.
  42            * /
  43           pu blic Integ er getStat usFromEnum (ICNHistor yStatus.St atus enumV alue);
  44  
  45   }