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

10.1 Files compared

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

10.2 Comparison summary

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

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

10.4 Active regular expressions

No regular expressions were active.

10.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.Proce ssStatus;
  6  
  7   /**
  8    * Data Ac cess Objec t interfac e for the  ProcessSta tus table.
  9    * 
  10    * @author   DN S      P II
  11    */
  12   public int erface Pro cessStatus DAO {
  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 Pro cessStatus  from the  database.
  24            * /
  25           pu blic List< ProcessSta tus> statu sTypeList( );
  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 P rocessStat us object  associated  with the  ID value.
  33            * /
  34           pu blic Proce ssStatus g etStatusTy pe(int id) ;
  35  
  36           /* *
  37            *  Get a Pro cessStatus  from the  specified  enumeratio n.
  38            *  
  39            *  @param en umValue
  40            *              Status e num value.
  41            *  @return P rocessStat us object  associated  with the  enumerated  value.
  42            * /
  43           pu blic Integ er getStat usFromEnum (ProcessSt atus.Statu s enumValu e);
  44  
  45   }