55. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:09 AM Eastern Daylight 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.

55.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\service\htreports PssReportService.java Wed May 29 15:26:28 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\service\htreports PssReportService.java Mon Jun 10 19:25:56 2019 UTC

55.2 Comparison summary

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

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

55.4 Active regular expressions

No regular expressions were active.

55.5 Comparison detail

  1   package go v.va.med.c cht.servic e.htreport s;
  2  
  3   import jav a.text.Par seExceptio n;
  4   import jav a.util.Arr ayList;
  5   import jav a.util.Dat e;
  6   import jav a.util.Lin kedList;
  7   import jav a.util.Lis t;
  8  
  9   import org .springfra mework.ste reotype.Se rvice;
  10  
  11   import gov .va.med.cc ht.model.p ssreport.C ategoryOfC are;
  12   import gov .va.med.cc ht.model.p ssreport.D istributio nOfSurveys Report;
  13   import gov .va.med.cc ht.model.p ssreport.S urveyTrend ChartResul t;
  14   import gov .va.med.cc ht.model.p ssreport.V endorSubmi ssionRepor tData;
  15   import gov .va.med.cc ht.model.r eport.Devi ceModality ;
  16   import gov .va.med.cc ht.model.s atisfactio nsurvey.Sa tisfaction SurveyQues tionResult ;
  17   import gov .va.med.cc ht.ui.mode l.PSSRepor tForm;
  18   import gov .va.med.fw .persisten t.DAOExcep tion;
  19   import gov .va.med.fw .service.S erviceExce ption;
  20  
  21   /**
  22    * Combine d service  for All Pa tient Sati sfaction R eports inc luding:
  23    * Vendor  Submission s
  24    * Survey  Trend Char ts
  25    * Distrib ution of S urveys
  26    * Statist ics for Pa tient Sati sfaction
  27    * ...
  28    * as well  as other  required d atabase me thods
  29    * @author   D N S
  30    *
  31    */
  32   @Service
  33   public int erface Pss ReportServ ice {
  34  
  35           pu blic List< VendorSubm issionRepo rtData> ge tVendorSub missionRep ort();
  36           
  37           pu blic Distr ibutionOfS urveysRepo rt getDist ributionNa tionalRepo rt(PSSRepo rtForm for m) throws  ParseExcep tion;
  38           
  39           pu blic Distr ibutionOfS urveysRepo rt getDist ributionVi snReport(P SSReportFo rm form) t hrows Pars eException ;
  40           
  41           pu blic Distr ibutionOfS urveysRepo rt getDist ributionFa cilityRepo rt(PSSRepo rtForm for m) throws  ParseExcep tion;
  42           
  43           pu blic List< CategoryOf Care> getC ategoriesO fCare();
  44           
  45           pu blic List< Date> getD atesByMont h();
  46  
  47           pu blic Array List<Strin g> getDate sByYears()  throws Pa rseExcepti on;
  48           
  49           pu blic List< Satisfacti onSurveyQu estionResu lt> getSat isfactionS urveyRepor t(PSSRepor tForm form ) throws N umberForma tException , DAOExcep tion, Serv iceExcepti on, ParseE xception;
  50           
  51           pu blic List< DeviceModa lity> getA llDeviceMo dalities() ;
  52  
  53           pu blic Devic eModality  getModalit yByName(St ring name) ;
  54           
  55           pu blic Devic eModality  getModalit yById(Long  id);
  56  
  57           pu blic Linke dList<Surv eyTrendCha rtResult>  getSurveyT rendCharts ReportData (PSSReport Form form)  throws Pa rseExcepti on;
  58           
  59           pu blic Strin g[] parseQ uarterSele cted(PSSRe portForm f orm) throw s ParseExc eption;
  60           
  61           pu blic Strin g[] parseF iscalSelec ted(PSSRep ortForm fo rm) throws  ParseExce ption;
  62           
  63           pu blic List< Satisfacti onSurveyQu estionResu lt> satSur veyQuarter s(PSSRepor tForm form , List<Sat isfactionS urveyQuest ionResult>  results);
  64           
  65           pu blic List< Satisfacti onSurveyQu estionResu lt> getAll Modalities GraphData( List<Satis factionSur veyQuestio nResult> d ata);
  66  
  67   }