11. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 11/14/2017 6:57:19 AM Central 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.

11.1 Files compared

# Location File Last Modified
1 cbs.zip\cbs\cbs\src\main\java\gov\va\cpss\dao PSPatientDAO.java Thu Nov 9 14:19:42 2017 UTC
2 cbs.zip\cbs\cbs\src\main\java\gov\va\cpss\dao PSPatientDAO.java Tue Nov 14 12:25:27 2017 UTC

11.2 Comparison summary

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

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

11.4 Active regular expressions

No regular expressions were active.

11.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      BROWNL
  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   }