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

8.1 Files compared

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

8.2 Comparison summary

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

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

8.4 Active regular expressions

No regular expressions were active.

8.5 Comparison detail

  1   package go v.va.cpss. dao;
  2  
  3   import jav a.util.Lis t;
  4   import jav a.util.Set ;
  5  
  6   import gov .va.cpss.m odel.cbs.C BSAccount;
  7  
  8   /**
  9    * Data Ac cess Objec t interfac e for the  CBSAccount  table.
  10    * 
  11    * @author   DN S      BROWNL
  12    */
  13   public int erface CBS AccountDAO  {
  14  
  15           pu blic Long  getByICN(f inal Strin g icn);
  16  
  17           pu blic Long  selectByIC N(final St ring icn);
  18           
  19           pu blic Strin g selectIC NById(fina l long id) ;
  20  
  21           pu blic Long  save(final  String ic n);
  22  
  23           /* *
  24            *  Batch sel ect
  25            *  
  26            *  @param in ICNs
  27            *  @return C BSAccounts
  28            * /
  29           pu blic List< CBSAccount > batchSel ect(final  String[] i nICNs);
  30  
  31           /* *
  32            *  Batch ins ert and re turn List  of CBSAcco unts
  33            *  
  34            *  @param in ICNs
  35            *  @return L ist of new  CBSAccoun ts
  36            * /
  37           pu blic List< CBSAccount > batchIns ertAndRetu rnCBSAccou nts(Set<St ring> inIC Ns);
  38  
  39   }