140. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 9/15/2018 10:48:14 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.

140.1 Files compared

# Location File Last Modified
1 MHV_2018.4.0.0.zip\2018.4.0.0\national portal\mhv_source\mhv_liferay\mhv-saml-attribute-ext\src\main\java\gov\va\med\mhv\liferay\saml\binding\impl MhvHttpSoap11Binding.java Thu Aug 23 21:31:40 2018 UTC
2 MHV_2018.4.0.0.zip\2018.4.0.0\national portal\mhv_source\mhv_liferay\mhv-saml-attribute-ext\src\main\java\gov\va\med\mhv\liferay\saml\binding\impl MhvHttpSoap11Binding.java Sat Sep 15 21:54:55 2018 UTC

140.2 Comparison summary

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

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

140.4 Active regular expressions

No regular expressions were active.

140.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.m hv.liferay .saml.bind ing.impl;
  5  
  6   import org .apache.co mmons.http client.Htt pClient;
  7   import org .opensaml. common.bin ding.decod ing.URICom parator;
  8   import org .opensaml. saml2.bind ing.decodi ng.HTTPSOA P11Decoder ;
  9   import org .opensaml. xml.parse. ParserPool ;
  10  
  11   import com .liferay.s aml.bindin g.impl.Htt pSoap11Bin ding;
  12  
  13   import gov .va.med.mh v.liferay. saml.bindi ng.decodin g.MhvCusto mURICompar ator;
  14  
  15   /**
  16    * @author   DNS
  17    *
  18    */
  19   public cla ss MhvHttp Soap11Bind ing extend s HttpSoap 11Binding  {
  20  
  21           pu blic MhvHt tpSoap11Bi nding(Pars erPool par serPool, H ttpClient  httpClient ) {
  22                    supe r(parserPo ol, httpCl ient);
  23                    
  24                    HTTP SOAP11Deco der messag eDecoder =  (HTTPSOAP 11Decoder) this.getMe ssageDecod er();
  25                    mess ageDecoder .setURICom parator(ne w MhvCusto mURICompar ator());
  26           }
  27           
  28           pu blic MhvHt tpSoap11Bi nding(Pars erPool par serPool, H ttpClient  httpClient , URICompa rator uriC omparator)  {
  29                    supe r(parserPo ol, httpCl ient);
  30                    
  31                    HTTP SOAP11Deco der messag eDecoder =  (HTTPSOAP 11Decoder) this.getMe ssageDecod er();
  32                    mess ageDecoder .setURICom parator(ur iComparato r);
  33           }
  34           
  35   }