114. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/20/2017 5:56:12 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.

114.1 Files compared

# Location File Last Modified
1 Genisis_2.0_v6_bld6.zip\Source Code\UI\Services\src\main\java\gov\va\genisis2\dao ICommentHistoryDao.java Thu Dec 14 19:57:08 2017 UTC
2 Genisis_2.0_v6_bld6.zip\Source Code\UI\Services\src\main\java\gov\va\genisis2\dao ICommentHistoryDao.java Wed Dec 20 22:13:17 2017 UTC

114.2 Comparison summary

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

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

114.4 Active regular expressions

No regular expressions were active.

114.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.genis is2.dao;
  5  
  6   import jav a.util.Lis t;
  7  
  8   import gov .va.genisi s2.excepti ons.Genisi sDAOExcept ion;
  9   import gov .va.genisi s2.model.C ommentHist ory;
  10  
  11   /**
  12    * @author   PII
  13    *
  14    */
  15   public int erface ICo mmentHisto ryDao {
  16           pu blic int c reateComme ntHistory( CommentHis tory comme ntHistory)  throws Ge nisisDAOEx ception;
  17  
  18           pu blic int u pdateComme ntHistory( CommentHis tory comme ntHistory)  throws Ge nisisDAOEx ception;
  19  
  20           // public Com mentHistor y getComme ntHistorie sByID(int  id) throws  GenisisDA OException ;
  21  
  22           pu blic List< CommentHis tory> getC ommentHist oriesByUID (String ui d) throws  GenisisDAO Exception;
  23  
  24           // public Lis t<CommentH istory> ge tCommentHi stories()  throws Gen isisDAOExc eption;
  25  
  26           pu blic int s ubmitOrMod ify(Commen tHistory c ommentHist ory) throw s GenisisD AOExceptio n;
  27  
  28           pu blic List< CommentHis tory> getC ommentHist oryById(in t requestI d) throws  GenisisDAO Exception;
  29  
  30           pu blic Comme ntHistory  getComment HistoryByC ommentId(i nt comment Id) throws  GenisisDA OException ;
  31  
  32           pu blic List< CommentHis tory> getC ommentHist oryByReque stIdStatus Id(int req uestId, St ring taskI d) throws  GenisisDAO Exception;
  33   }