148. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:23 AM 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.

148.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\persistent ReportDAO.java Fri Dec 7 17:36:16 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\persistent ReportDAO.java Thu Dec 13 14:59:17 2018 UTC

148.2 Comparison summary

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

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

148.4 Active regular expressions

No regular expressions were active.

148.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrig ht � 2010  VHA. All r ights rese rved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.c cht.persis tent;
  5  
  6   import jav a.util.Lin kedHashMap ;
  7   import jav a.util.Lis t;
  8   import jav a.util.Map ;
  9  
  10   import gov .va.med.cc ht.model.r eport.Aggr egateModal ity;
  11   import gov .va.med.cc ht.model.r eport.Comp letedRepor t;
  12   import gov .va.med.cc ht.model.r eport.Comp letedRepor tFieldType ;
  13   import gov .va.med.cc ht.model.r eport.Sche duledRepor t;
  14   import gov .va.med.cc ht.model.r eport.Simp leComplete dReport;
  15   import gov .va.med.cc ht.model.t erminology .StandardR eport;
  16   import gov .va.med.cc ht.service .report.Co mpletedRep ortsSearch QueryInfo;
  17   import gov .va.med.cc ht.service .report.Re portFilter SearchQuer yInfo;
  18   import gov .va.med.fw .model.Ent ityKey;
  19   import gov .va.med.fw .persisten t.DAOExcep tion;
  20   import gov .va.med.fw .persisten t.MaxRecor dsExceeded Exception;
  21   import gov .va.med.fw .report.Re portExport edType;
  22  
  23   /**
  24    * 
  25    * @author   DNS 
  26    */
  27   public int erface Rep ortDAO {
  28  
  29           pu blic Sched uledReport  getSchedu ledReport( EntityKey< ScheduledR eport> ide ntifier) t hrows DAOE xception;
  30  
  31           pu blic Sched uledReport  saveSched uledReport (Scheduled Report sch eduledRepo rt) throws  DAOExcept ion;
  32  
  33           pu blic void  deleteSche duledRepor t(EntityKe y<Schedule dReport> i dentifier)  throws DA OException ;
  34  
  35           pu blic List< ScheduledR eport> sea rchSchedul edReports( ReportFilt erSearchQu eryInfo se archCriter ia)
  36                             throws  DAOExcept ion, MaxRe cordsExcee dedExcepti on;
  37           
  38           pu blic Compl etedReport  getComple tedReport( EntityKey< CompletedR eport> ide ntifier)
  39                             throws  DAOExcept ion;
  40  
  41           pu blic void  saveComple tedReport( CompletedR eport comp letedRepor t) throws  DAOExcepti on;
  42  
  43           pu blic void  saveSimple CompletedR eport(Simp leComplete dReport co mpletedRep ort)
  44                             throws  DAOExcept ion;
  45  
  46           pu blic List< SimpleComp letedRepor t> searchC ompletedRe ports(
  47                             Comple tedReports SearchQuer yInfo sear chCriteria ) throws D AOExceptio n,
  48                             MaxRec ordsExceed edExceptio n;
  49  
  50  
  51           pu blic void  deleteComp letedRepor t(EntityKe y<Complete dReport> i dentifier)  throws DA OException ;
  52  
  53           pu blic Simpl eCompleted Report get SimpleComp letedRepor t(
  54                             Entity Key<Simple CompletedR eport> ide ntifier) t hrows DAOE xception;
  55  
  56           pu blic List< StandardRe port> getD istinctSta ndardRepor ts() throw s DAOExcep tion;
  57  
  58           pu blic List< ReportExpo rtedType>  getDistinc tReportExp ortTypes()  throws DA OException ;
  59  
  60           pu blic Integ er purgeCo mpletedRep orts() thr ows DAOExc eption;
  61  
  62           pu blic Map<S tring, Str ing> getEx piringRepo rtIdUserMa p(Integer  expiringDa ys, Intege r warningD ays)
  63                             throws  DAOExcept ion;
  64  
  65           pu blic Linke dHashMap<S tring, Str ing> getUn iqueFilter Values(Com pletedRepo rtFieldTyp e fieldTyp e);
  66  
  67   }