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

8.1 Files compared

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

8.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 160
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      P II
  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 A ccount Num bers
  28            * /
  29           pu blic Long[ ] selectBy ICNs(final  String[]  inICNs);
  30  
  31           /* *
  32            *  Batch sel ect
  33            *  
  34            *  @param in ICNs
  35            *  @return C BSAccounts
  36            * /
  37           pu blic List< CBSAccount > batchSel ect(final  String[] i nICNs);
  38  
  39           /* *
  40            *  Batch upd ate
  41            *  
  42            *  @param in NewICNs
  43            *  @param in AccountNum bers
  44            *  @return n umbers of  updates
  45            * /
  46           pu blic int[]  batchUpda te(final S tring[] in NewICNs, f inal Long[ ] inAccoun tNumbers);
  47  
  48           /* *
  49            *  Batch upd ate
  50            *  
  51            *  @param in NewICNs
  52            *  @param in OldICNs
  53            *  @return n umbers of  updates
  54            * /
  55           pu blic int[]  batchUpda te(final S tring[] in NewICNs, f inal Strin g[] inOldI CNs);
  56  
  57           /* *
  58            *  Batch ins ert
  59            *  
  60            *  @param in ICNs
  61            *  @return n umbers of  updates
  62            * /
  63           pu blic int[]  batchInse rt(final S tring[] in ICNs);
  64           
  65           /* *
  66            *  Batch ins ert and re turn gener ated keys
  67            *  
  68            *  @param in ICNs
  69            *  @return l ong[] of g enerated k eys
  70            * /
  71           pu blic long[ ] batchIns ertAndRetu rnKeys(fin al String[ ] inICNs);
  72  
  73           /* *
  74            *  Batch ins ert and re turn List  of CBSAcco unts
  75            *  
  76            *  @param in ICNs
  77            *  @return L ist of new  CBSAccoun ts
  78            * /
  79           pu blic List< CBSAccount > batchIns ertAndRetu rnCBSAccou nts(Set<St ring> inIC Ns);
  80  
  81   }