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

13.1 Files compared

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

13.2 Comparison summary

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

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

13.4 Active regular expressions

No regular expressions were active.

13.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 SReceived;
  6  
  7   /**
  8    * Data Ac cess Objec t interfac e for the  PSReceived  table.
  9    * 
  10    * @author   DN S      P II
  11    */
  12   public int erface PSR eceivedDAO  {
  13  
  14           /* *
  15            *  Save the  specified  PSReceived  object in  the datab ase.
  16            *  
  17            *  @param ps Received
  18            *  @return T he primary  key ID va lue of the  inserted  entry.
  19            * /
  20           pu blic long  save(PSRec eived psRe ceived);
  21  
  22           /* *
  23            *  Update th e status o f the spec ified PSRe ceived obj ect in the  database.
  24            *  
  25            *  @param ps Received
  26            * /
  27           pu blic void  updateStat us(PSRecei ved psRece ived);
  28  
  29           /* *
  30            *  Update th e results  of the spe cified PSR eceived ob ject in th e database .
  31            *  
  32            *  @param ps Received
  33            * /
  34           pu blic void  updateResu lts(PSRece ived psRec eived);
  35  
  36           /* *
  37            *  Get list  of PSRecei ved ID tha t have the  specified  status.
  38            *  
  39            *  @return T he list of  ID
  40            * /
  41           pu blic List< Long> getP SReceivedI DListBySta tusID(fina l int stat us);
  42  
  43           /* *
  44            *  Update th e PSReceiv ed record  with the s pecified s tatus iden tified by  the
  45            *  specified  ID.
  46            *  
  47            *  @param id
  48            *              The id o f the reco rd.
  49            *  @param to Status
  50            *              The stat us to set.
  51            *  @return T he number  of rows up dated.
  52            * /
  53           pu blic int u pdateStatu sById(fina l long id,  final int  toStatus) ;
  54   }