63. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 11/9/2017 4:31:05 PM Central 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.

63.1 Files compared

# Location File Last Modified
1 PPS-N_B397.zip\PPS-N_B397\PPS-N_B397\PS_PPS_srv\src\main\java\gov\va\med\pharmacy\peps\service\common\session SiteListService.java Thu Nov 9 15:08:14 2017 UTC
2 PPS-N_B397.zip\PPS-N_B397\PPS-N_B397\PS_PPS_srv\src\main\java\gov\va\med\pharmacy\peps\service\common\session SiteListService.java Thu Nov 9 20:01:01 2017 UTC

63.2 Comparison summary

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

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

63.4 Active regular expressions

No regular expressions were active.

63.5 Comparison detail

  1   package go v.va.med.p harmacy.pe ps.service .common.se ssion;
  2  
  3   import jav a.util.Lis t;
  4  
  5   import gov .va.med.ph armacy.pep s.common.v o.Complian ceSiteVo;
  6   import gov .va.med.ph armacy.pep s.common.v o.UserVo;
  7   import gov .va.med.ph armacy.pep s.common.v o.VistaSit eVo;
  8  
  9   /**
  10    * SiteLis tService.
  11    * 
  12    * @author  
D NS     RUSTRA
  13    *
  14    */
  15   public int erface Sit eListServi ce {
  16  
  17       /**
  18        * Ret urns the e xisting ex cluded sit es.
  19        * 
  20        * @re turn List< Compliance SiteVo>
  21        */
  22       public  List<Comp lianceSite Vo> getExc ludedCompl ianceSites ();
  23  
  24       /**
  25        * Ret urns the e xisting in cluded sit es.
  26        * 
  27        * @re turn List< Compliance SiteVo>
  28        */
  29       public  List<Comp lianceSite Vo> getInc ludedCompl ianceSites ();
  30  
  31       /**
  32        * Sav es the exc luded site s.
  33        * 
  34        * @pa ram exclud edSites li st of Comp lianceSite Vo instanc es
  35        * @pa ram user U serVo inst ance
  36        */
  37       public  void save ExcludedSi tes(List<C omplianceS iteVo> exc ludedSites , UserVo u ser);
  38  
  39       /**
  40        * Sav es the inc luded site s.
  41        * 
  42        * @pa ram includ edSites li st of Comp lianceSite Vo instanc es
  43        * @pa ram user U serVo inst ance
  44        */
  45       public  void save IncludedSi tes(List<C omplianceS iteVo> inc ludedSites , UserVo u ser);
  46  
  47       /**
  48        * Ret urns all t he VistaSi teVo insta nces.
  49        * 
  50        * @re turn List< VistaSiteV o>
  51        */
  52       public  List<Vist aSiteVo> g etVistaSit es();
  53  
  54       /**
  55        * Ret urns the V istaSite i nstance fo r the give n station  number.
  56        * 
  57        * @pa ram statio nNumber St ring param eter.
  58        * @re turn Vista SiteVo ins tance.
  59        */
  60       public  VistaSite Vo getVist aSiteBySta tionNumber (String st ationNumbe r);
  61  
  62   }