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

14.1 Files compared

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

14.2 Comparison summary

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

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

14.4 Active regular expressions

No regular expressions were active.

14.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 SSite;
  6  
  7   /**
  8    * Data Ac cess Objec t interfac e for the  PSSite tab le.
  9    * 
  10    * @author   DN S      P II
  11    */
  12   public int erface PSS iteDAO {
  13  
  14           /* *
  15            *  Save the  specified  PSSite to  the databa se.
  16            *  
  17            *  @param si te
  18            *              The site  to save.  The id, cr eatedBy, c reatedDate , modified By
  19            *              and modi fiedDate p roperties  will be up dated to m atch the
  20            *              database  state aft er the ins ert.
  21            *  @return A uto-genera ted index  ID of the  entry in t he databas e.
  22            * /
  23           pu blic long  save(PSSit e site);
  24  
  25           /* *
  26            *  Get the i ndex of th e last ent ry in the  table.
  27            *  
  28            *  @return L ong repres entation o f the last  index or  null if no ne.
  29            * /
  30           pu blic Long  getLastInd ex();
  31  
  32           /* *
  33            *  Delete th e entry in  the table  associate d with the  specified  received  ID.
  34            *  
  35            *  @param re ceivedId
  36            * /
  37           pu blic void  deleteByRe ceivedId(f inal long  receivedId );
  38  
  39           /* *
  40            *  Get the s ite by the  id.
  41            *  
  42            *  @param id
  43            * /
  44           pu blic PSSit e getById( final long  id);
  45           
  46           
  47           /* *
  48            *  Get a lis t of all s ite for al l PSReceiv ed with gi ven status .
  49            *  
  50            *  @param st atusId sta tus id of  PSReceived
  51            *  @return L ist<PSSite > unordere d.
  52            * /
  53           pu blic List< PSSite> ge tAllForPSR eceivedSta tusId(fina l int stat usId);
  54  
  55           /* *
  56            *  Get a lis t of all s ite by the  specified  received  id.
  57            * /
  58           pu blic List< PSSite> ge tAllByPSRe ceivedID(f inal long  receivedId );
  59  
  60           /* *
  61            *  Get a lis t of all s ite id by  the specif ied list o f received  id.
  62            * /
  63           pu blic List< Long> getA llIDByPSRe ceivedID(f inal long  receivedId );
  64   }