24. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/5/2017 4:21:45 PM Central 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.

24.1 Files compared

# Location File Last Modified
1 C:\working_scrub\Unredacted\eHX Code Base\eHX_Bld2_Source Code_CIF_2017-02-14\NHIN_adapter\AdapterEJB\src\archive\java\gov\va\med\nhin\adapter\adaptergateway\docretrieve AdapterGatewayDocRetrieveWS.java Fri Feb 10 15:41:44 2017 UTC
2 eHX-CIF.zip\eHX-CIF\eHX Code Base\eHX_Bld2_Source Code_CIF_2017-02-14\NHIN_adapter\AdapterEJB\src\archive\java\gov\va\med\nhin\adapter\adaptergateway\docretrieve AdapterGatewayDocRetrieveWS.java Mon Apr 3 14:22:52 2017 UTC

24.2 Comparison summary

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

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

24.4 Active regular expressions

No regular expressions were active.

24.5 Comparison detail

  1   package go v.va.med.n hin.adapte r.adapterg ateway.doc retrieve;
  2  
  3   import jav a.net.URL;
  4  
  5   import jav ax.ejb.EJB ;
  6   import jav ax.ejb.Sta teless;
  7   import jav ax.xml.nam espace.QNa me;
  8  
  9   import gov .hhs.fha.n hinc.commo n.nhinccom monentity. Responding GatewayCro ssGatewayR etrieveReq uestType;
  10   import gov .hhs.fha.n hinc.entit ydocretrie ve.EntityD ocRetrieve ;
  11   import gov .hhs.fha.n hinc.entit ydocretrie ve.EntityD ocRetrieve PortType;
  12   import gov .va.med.nh in.adapter .propertyl ookup.Prop ertyLookup ;
  13   import gov .va.med.nh in.adapter .propertyl ookup.Prop ertyLookup Local;
  14   import ihe .iti.xds_b ._2007.Ret rieveDocum entSetResp onseType;
  15  
  16   /**
  17    *
  18    * @author   DN S      VAZQUD
  19    */
  20   @Stateless (name = "A dapterGate wayDocRetr ieveWS")
  21   public cla ss Adapter GatewayDoc RetrieveWS  implement s EntityDo cRetrieveP ortTypeLoc al
  22   {
  23           pr ivate Enti tyDocRetri eve entity DocRetriev e;
  24           pr ivate Prop ertyLookup  propertyL ookup;
  25  
  26           @E JB(beanInt erface = P ropertyLoo kupLocal.c lass, bean Name = "Pr opertyLook up")
  27           pu blic void  setPropert yLookup(Pr opertyLook up propert yLookup)
  28           {
  29                    this .propertyL ookup = pr opertyLook up;
  30           }
  31  
  32           pu blic Retri eveDocumen tSetRespon seType res pondingGat ewayCrossG atewayRetr ieve(Respo ndingGatew ayCrossGat ewayRetrie veRequestT ype rgcgrt )
  33           {
  34                    try
  35                    {
  36                             return  getEntity DocRetriev ePort().re spondingGa tewayCross GatewayRet rieve(rgcg rt);
  37                    }
  38                    catc h(Exceptio n e)
  39                    {
  40                             throw  new Unsupp ortedOpera tionExcept ion("Not s upported y et.");
  41                    }
  42           }
  43  
  44           pr ivate Enti tyDocRetri evePortTyp e getEntit yDocRetrie vePort() t hrows Exce ption
  45           {
  46                    if(e ntityDocRe trieve ==  null)
  47                    {
  48                             URL ur l = new UR L(property Lookup.get Property(" EntityDocR etrieveWSD L"));
  49                             QName  qname = ne w QName("u rn:gov:hhs :fha:nhinc :entitydoc retrieve",  "EntityDo cRetreive" );
  50                             entity DocRetriev e = new En tityDocRet rieve(url,  qname);
  51                    }
  52  
  53                    retu rn entityD ocRetrieve .getEntity DocRetriev ePortSoap( );
  54           }
  55   }