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

15.1 Files compared

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

15.2 Comparison summary

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

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

15.4 Active regular expressions

No regular expressions were active.

15.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.icn.V istaAccoun t;
  6  
  7   /**
  8    * Data Ac cess Objec t interfac e for the  VistaAccou nt table.
  9    * 
  10    * @author   DN S      P II
  11    */
  12   public int erface Vis taAccountD AO {
  13  
  14           pu blic boole an exists( final long  dfn, fina l String s tationNum) ;
  15  
  16           pu blic boole an save(fi nal int st atusId, fi nal long d fn, final  String sta tionNum, f inal Strin g icnNumbe r, final l ong cbssAc ntId);
  17  
  18           /* *
  19            *  Batch upd ate
  20            *  
  21            *  @param in VistaAccou nts
  22            *  
  23            * /
  24  
  25           pu blic int[]  update(Li st<VistaAc count> inV istaAccoun ts);
  26  
  27           /* *
  28            *  Batch sel ect
  29            *  
  30            *  @param in ICNs
  31            *  
  32            * /
  33           pu blic List< VistaAccou nt> batchS elect(Stri ng[] inICN s);
  34  
  35           /* *
  36            *  Get VistA  Account
  37            *  
  38            *  @param in DFN
  39            *  @param in StationNum
  40            *  
  41            * /
  42           pu blic Vista Account ge tVistaAcco unt(final  long inDFN , final St ring inSta tionNum);
  43   }