3761. EPMO Open Source Coordination Office Redaction File Detail Report

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

3761.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:32 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-legacy\src\archive\java\gov\va\med\nhin\vap\server\service\permission\pdp PDPImplWS.java Fri Apr 21 20:03:28 2017 UTC

3761.2 Comparison summary

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

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

3761.4 Active regular expressions

No regular expressions were active.

3761.5 Comparison detail

        1   /*
        2    * To chan ge this te mplate, ch oose Tools  | Templat es
        3    * and ope n the temp late in th e editor.
        4    */
        5   package go v.va.med.n hin.vap.se rver.servi ce.permiss ion.pdp;
        6  
        7   import jav ax.ejb.Sta teless;
        8   import jav ax.interce ptor.Inter ceptors;
        9   import jav ax.jws.Web Method;
        10   import jav ax.jws.Web Result;
        11   import jav ax.jws.Web Service;
        12   import jav ax.jws.soa p.SOAPBind ing;
        13  
        14   import oas is.names.t c.xacml._2 _0.context .schema.os .RequestTy pe;
        15   import oas is.names.t c.xacml._2 _0.context .schema.os .ResponseT ype;
        16  
        17   import org .springfra mework.ejb .intercept or.SpringB eanAutowir ingInterce ptor;
        18  
        19   /**
        20    *
        21    * @author  Anand Sas try
        22    * @SOAPBi nding(para meterStyle  = SOAPBin ding.Param eterStyle. BARE)
        23    * @WebSer vice(servi ceName = " PDPWebServ ice", port Name = "PD PWebServic ePort",
        24    * name =  "PDPWebSer vicePortTy pe", wsdlL ocation =
        25    * "META-I NF/xml-res ources/web -services/ PDPWebServ ice/wsdl/X ACMLContex tHandlerSe rvice.wsdl "
        26    * )
        27    */
        28   @Stateless (name="PDP ImplWS", m appedName  = "PDPImpl WS")
        29   @SOAPBindi ng(paramet erStyle =  SOAPBindin g.Paramete rStyle.BAR E)
        30   @WebServic e(/*wsdlLo cation = " META-INF/x ml-resourc es/web-ser vices/PDP/ wsdl/PDPIm plWS.wsdl" */)
        31   // @WebSer vice(servi ceName = " PDPWebServ ice",portN ame = "PDP WebService Port",
        32   // targetN amespace=" urn:oasis: names:tc:x acml:2.0:c ontext:sch ema:os",
        33   // wsdlLoc ation =
        34   // "META-I NF/xml-res ources/web -services/ PDPWebServ ice/wsdl/P DPWebServi ce.wsdl")
        35   @Intercept ors(Spring BeanAutowi ringInterc eptor.clas s)
        36   public cla ss PDPImpl WS
        37   {
        38  
        39       /**
        40        * @pa ram reques t
        41        * @re turn
        42        */
        43       @WebMe thod
        44       @WebRe sult(targe tNamespace  = "urn:oa sis:names: tc:xacml:2 .0:context :schema:os ", name =  "Response" )
        45       public  ResponseT ype checkP olicy(fina l RequestT ype reques t)
        46       {
        47           th row new Ru ntimeExcep tion("Not  Implemente d!");
        48       }
        49   }