117. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/20/2017 5:56:12 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.

117.1 Files compared

# Location File Last Modified
1 Genisis_2.0_v6_bld6.zip\Source Code\UI\Services\src\main\java\gov\va\genisis2\dao IUserManagementDao.java Thu Dec 14 19:57:07 2017 UTC
2 Genisis_2.0_v6_bld6.zip\Source Code\UI\Services\src\main\java\gov\va\genisis2\dao IUserManagementDao.java Wed Dec 20 22:14:19 2017 UTC

117.2 Comparison summary

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

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

117.4 Active regular expressions

No regular expressions were active.

117.5 Comparison detail

  1   package go v.va.genis is2.dao;
  2  
  3   import jav a.util.Lis t;
  4  
  5   import gov .va.genisi s2.excepti ons.Genisi sDAOExcept ion;
  6   import gov .va.genisi s2.model.U ser;
  7   import gov .va.genisi s2.model.U serCount;
  8  
  9   /**
  10    * @author   PII
  11    *
  12    */
  13   public int erface IUs erManageme ntDao {
  14           pu blic User  getUserDet ailsByEmai l(String e mail) thro ws Genisis DAOExcepti on;
  15  
  16           pu blic User  getUserDet ailsById(i nt id) thr ows Genisi sDAOExcept ion;
  17  
  18           pu blic Strin g getUserR ole(int ui d) throws  GenisisDAO Exception;
  19  
  20           pu blic User  getUserDet ailsByUser name(Strin g username ) throws G enisisDAOE xception;
  21  
  22           pu blic List< UserCount>  getUserCo untOnRole( ) throws G enisisDAOE xception;
  23           
  24           pu blic List< User> getU serDetails ByRoleType Id(int rol eTypeId) t hrows Geni sisDAOExce ption;
  25           
  26           pu blic List< User> getA llUsers()  throws Gen isisDAOExc eption;
  27           
  28           pu blic User  saveOrUpda te(User us er) throws  GenisisDA OException ;
  29           
  30           pu blic int u pdateUserS tatus(List <String> u sersList)  throws Gen isisDAOExc eption;
  31   }