3875. EPMO Open Source Coordination Office Redaction File Detail Report

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

3875.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:57 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-server\src\main\java\gov\va\nvap\server\endpoint\pdq PdqServiceFacade.java Fri Apr 21 20:03:28 2017 UTC

3875.2 Comparison summary

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

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

3875.4 Active regular expressions

No regular expressions were active.

3875.5 Comparison detail

        1   package go v.va.nvap. server.end point.pdq;
        2  
        3   import gov .va.nvap.s ervice.pdq .PatientCo rrelations Query;
        4   import gov .va.nvap.s ervice.pdq .PatientCo rrelations Response;
        5   import gov .va.nvap.s ervice.pdq .PatientDe mographics Query;
        6   import gov .va.nvap.s ervice.pdq .PatientDe mographics Response;
        7   import gov .va.nvap.s ervice.pdq .PatientMa tchQuery;
        8   import gov .va.nvap.s ervice.pdq .PatientMa tchRespons e;
        9   import gov .va.nvap.s ervice.pdq .PdqExcept ion;
        10   import gov .va.nvap.s ervice.pdq .PdqServic e;
        11   import gov .va.nvap.s ervice.pdq .RemovePat ientCorrel ationReque st;
        12   import jav ax.ejb.Sta teless;
        13   import jav ax.interce ptor.Inter ceptors;
        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    * The sta teless EJB  for the a uthorizati on prefere nce servic e.
        20    * 
        21    * @author  Asha Amri traj
        22    */
        23   @Stateless (name = "P dqService" , mappedNa me = "PdqS ervice")
        24   @javax.ejb .Remote(Pd qService.c lass)
        25   @Intercept ors(Spring BeanAutowi ringInterc eptor.clas s)
        26   public cla ss PdqServ iceFacade  implements  PdqServic e {
        27  
        28           @A utowired
        29           @Q ualifier(v alue = "Pd qService")
        30           Pd qService p dqService;
        31  
        32           @O verride
        33           pu blic Patie ntCorrelat ionsRespon se getCorr elatedFaci lities(
        34                             final  PatientCor relationsQ uery query ) throws P dqExceptio n {
        35                    retu rn this.pd qService.g etCorrelat edFaciliti es(query);
        36           }
        37  
        38           @O verride
        39           pu blic Patie ntDemograp hicsRespon se getPati entDemogra phics(
        40                             final  PatientDem ographicsQ uery query ) throws P dqExceptio n {
        41                    retu rn this.pd qService.g etPatientD emographic s(query);
        42           }
        43  
        44           @O verride
        45           pu blic Remov ePatientCo rrelationR equest rem ovePatient Correlatio n(
        46                             final  RemovePati entCorrela tionReques t request)  throws Pd qException  {
        47                    retu rn this.pd qService.r emovePatie ntCorrelat ion(reques t);
        48           }
        49  
        50           @O verride
        51           pu blic Patie ntMatchRes ponse sear chPatient(
        52                             final  PatientMat chQuery pa tientMatch Request) t hrows PdqE xception {
        53                    retu rn this.pd qService.s earchPatie nt(patient MatchReque st);
        54           }
        55  
        56   }