163. EPMO Open Source Coordination Office Redaction File Detail Report

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

163.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\service\htreports PssReportService.java Fri Dec 7 17:36:30 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\service\htreports PssReportService.java Wed Dec 12 19:45:44 2018 UTC

163.2 Comparison summary

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

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

163.4 Active regular expressions

No regular expressions were active.

163.5 Comparison detail

  1   package go v.va.med.c cht.servic e.htreport s;
  2  
  3   import jav a.util.Dat e;
  4   import jav a.util.Lin kedList;
  5   import jav a.util.Lis t;
  6  
  7   import org .springfra mework.ste reotype.Se rvice;
  8  
  9   import gov .va.med.cc ht.model.p ssreport.C ategoryOfC are;
  10   import gov .va.med.cc ht.model.p ssreport.D istributio nOfSurveys Report;
  11   import gov .va.med.cc ht.model.p ssreport.S urveyTrend ChartResul t;
  12   import gov .va.med.cc ht.model.p ssreport.V endorSubmi ssionRepor tData;
  13   import gov .va.med.cc ht.model.r eport.Devi ceModality ;
  14   import gov .va.med.cc ht.model.s atisfactio nsurvey.Sa tisfaction SurveyQues tionResult ;
  15   import gov .va.med.cc ht.ui.mode l.PSSRepor tForm;
  16   import gov .va.med.fw .persisten t.DAOExcep tion;
  17   import gov .va.med.fw .service.S erviceExce ption;
  18  
  19   /**
  20    * Combine d service  for All Pa tient Sati sfaction R eports inc luding:
  21    * Vendor  Submission s
  22    * Survey  Trend Char ts
  23    * Distrib ution of S urveys
  24    * Statist ics for Pa tient Sati sfaction
  25    * ...
  26    * as well  as other  required d atabase me thods
  27    * @author   D N S
  28    *
  29    */
  30   @Service
  31   public int erface Pss ReportServ ice {
  32  
  33           pu blic List< VendorSubm issionRepo rtData> ge tVendorSub missionRep ort();
  34           
  35           pu blic Distr ibutionOfS urveysRepo rt getDist ributionNa tionalRepo rt(PSSRepo rtForm for m);
  36           
  37           pu blic Distr ibutionOfS urveysRepo rt getDist ributionVi snReport(P SSReportFo rm form);
  38           
  39           pu blic Distr ibutionOfS urveysRepo rt getDist ributionFa cilityRepo rt(PSSRepo rtForm for m);
  40           
  41           pu blic List< CategoryOf Care> getC ategoriesO fCare();
  42           
  43           pu blic List< Date> getD atesByMont h();
  44           
  45           pu blic List< Satisfacti onSurveyQu estionResu lt> getSat isfactionS urveyRepor t(PSSRepor tForm form ) throws N umberForma tException , DAOExcep tion, Serv iceExcepti on;
  46           
  47           pu blic List< DeviceModa lity> getA llDeviceMo dalities() ;
  48  
  49           pu blic Devic eModality  getModalit yByName(St ring name) ;
  50           
  51           pu blic Devic eModality  getModalit yById(Long  id);
  52  
  53           pu blic Linke dList<Surv eyTrendCha rtResult>  getSurveyT rendCharts ReportData (PSSReport Form form) ;
  54   }