4213. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:51:23 PM 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.

4213.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:23 2017 UTC
2 eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-svc-facility\src\main\java\gov\va\nvap\svc\facility\jee\wrapper FacilityServiceFacade.java Fri Apr 21 20:03:30 2017 UTC

4213.2 Comparison summary

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

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

4213.4 Active regular expressions

No regular expressions were active.

4213.5 Comparison detail

        1   package go v.va.nvap. svc.facili ty.jee.wra pper;
        2  
        3   import jav a.util.Col lection;
        4  
        5  
        6   import gov .va.nvap.s vc.facilit y.data.Fac ility;
        7   import gov .va.nvap.s vc.facilit y.data.Loc ation;
        8   import gov .va.nvap.s vc.facilit y.intf.Ent ityDoesNot ExistExcep tion;
        9   import gov .va.nvap.s vc.facilit y.intf.Fac ilityServi ce;
        10  
        11   import jav ax.ejb.Sta teless;
        12   import jav ax.interce ptor.Inter ceptors;
        13  
        14   import org .springfra mework.bea ns.factory .annotatio n.Autowire d;
        15   import org .springfra mework.bea ns.factory .annotatio n.Qualifie r;
        16   import org .springfra mework.ejb .intercept or.SpringB eanAutowir ingInterce ptor;
        17  
        18   /**
        19    * Exposes  the Facil ity Servic e as a Loc al Statele ss Session  Beam.
        20    * 
        21    * @author  Anand Sas try
        22    * 
        23    */
        24   @Stateless (name = "F acilitySer vice", map pedName =  "FacilityS ervice")
        25   @javax.ejb .Remote(Fa cilityServ ice.class)
        26   @Intercept ors(Spring BeanAutowi ringInterc eptor.clas s)
        27   public cla ss Facilit yServiceFa cade imple ments Faci lityServic e {
        28  
        29           @A utowired
        30           @Q ualifier(v alue = "Fa cilityServ iceImpl")
        31           Fa cilityServ ice facili tyService;
        32           
        33           @O verride
        34           pu blic Colle ction<Faci lity> getA llVistAFac ilities()  {
        35                    retu rn facilit yService.g etAllVistA Facilities ();
        36           }
        37  
        38           @O verride
        39           pu blic Colle ction<Faci lity> getA llowedVist AFacilitie s() {
        40                    retu rn facilit yService.g etAllowedV istAFacili ties();
        41           }
        42  
        43           @O verride
        44           pu blic Facil ity getFac ilityBySta tionNumber (String id )
        45                             throws  EntityDoe sNotExistE xception,  IllegalArg umentExcep tion {
        46                    retu rn facilit yService.g etFacility ByStationN umber(id);
        47           }
        48  
        49           @O verride
        50           pu blic Facil ity getVHA UserFacili ty(String  vhaUserId)
        51                             throws  EntityDoe sNotExistE xception,  IllegalArg umentExcep tion {
        52                    retu rn facilit yService.g etVHAUserF acility(vh aUserId);
        53           }
        54  
        55           @O verride
        56           pu blic Locat ion getLoc ationByCod e(String l ocationCod e)
        57                             throws  EntityDoe sNotExistE xception,  IllegalArg umentExcep tion {
        58                    retu rn facilit yService.g etLocation ByCode(loc ationCode) ;
        59           }
        60   }