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

12.1 Files compared

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

12.2 Comparison summary

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

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

12.4 Active regular expressions

No regular expressions were active.

12.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.fps.P SPatient;
  6   import gov .va.cpss.m odel.fps.P SSite;
  7  
  8   /**
  9    * Data Ac cess Objec t interfac e for the  PSPatient  table.
  10    * 
  11    * @author   DN S      P II
  12    */
  13   public int erface PSP atientDAO  {
  14  
  15           /* *
  16            *  Save the  specified  PSPatient  to the dat abase.
  17            *  
  18            *  @param pa tient
  19            *              The pati ent to sav e. The id,  createdBy , createdD ate,
  20            *              modified By and mod ifiedDate  properties  will be u pdated to
  21            *              match th e database  state aft er the ins ert.
  22            *  @return A uto-genera ted index  ID of the  entry in t he databas e.
  23            * /
  24           pu blic long  save(PSPat ient patie nt);
  25  
  26           /* *
  27            *  Get the i ndex of th e last ent ry in the  table.
  28            *  
  29            *  @return L ong repres entation o f the last  index or  null if no ne.
  30            * /
  31           pu blic Long  getLastInd ex();
  32  
  33           /* *
  34            *  Get a lis t of all p atient by  the specif ied site.
  35            * /
  36           pu blic List< PSPatient>  getAllByP SSiteID(fi nal PSSite  psSite);
  37  
  38   }