13. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 11/1/2017 10:11:06 AM 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.

13.1 Files compared

# Location File Last Modified
1 core.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\oit\oed\vaww VAIdM.java Wed Nov 1 13:59:50 2017 UTC
2 core.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\oit\oed\vaww VAIdM.java Wed Nov 1 14:35:48 2017 UTC

13.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 5 198
Changed 4 8
Inserted 0 0
Removed 0 0

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

13.4 Active regular expressions

No regular expressions were active.

13.5 Comparison detail

  1  
  2   package go v.va.oit.o ed.vaww;
  3  
  4   import jav a.net.Malf ormedURLEx ception;
  5   import jav a.net.URL;
  6   import jav ax.xml.nam espace.QNa me;
  7   import jav ax.xml.ws. Service;
  8   import jav ax.xml.ws. WebEndpoin t;
  9   import jav ax.xml.ws. WebService Client;
  10   import jav ax.xml.ws. WebService Exception;
  11   import jav ax.xml.ws. WebService Feature;
  12  
  13   import com .liferay.p ortal.kern el.util.Pr opsUtil;
  14  
  15   import gov .va.caret. util.Toolb ox;
  16  
  17  
  18   /**
  19    * This cl ass was ge nerated by  the JAX-W S RI.
  20    * JAX-WS  RI 2.2.4-b 01
  21    * Generat ed source  version: 2 .2
  22    * 
  23    */
  24   @WebServic eClient(na me = "VAId M", target Namespace  = "http:// URL           . DNS     ", wsdlLoc ation = "f ile:/u01/a pp/oracle/ user_proje cts/domain s/wsdl/mul ticachesch emas/wsdl/ IdMWebServ ice2.wsdl" )
  25   public cla ss VAIdM
  26       extend s Service
  27   {
  28  
  29       privat e final st atic URL V AIDM_WSDL_ LOCATION;
  30       privat e final st atic WebSe rviceExcep tion VAIDM _EXCEPTION ;
  31         private fi nal static  QName VAI DM_QNAME =  new QName ("http:// URL           . DNS     ", "VAIdM" );
  32  
  33       static  {
  34           UR L url = nu ll;
  35           We bServiceEx ception e  = null;
  36           tr y {
  37                    Stri ng urlStr  = PropsUti l.get("IdM WebService 2.wsdl.url ");
  38                    if (  Toolbox.i sEmpty(url Str) ){
  39                             url =  new URL("f ile:/u01/a pp/oracle/ user_proje cts/domain s/wsdl/mul ticachesch emas/wsdl/ IdMWebServ ice2.wsdl" );
  40                    } el se {
  41                             url =  new URL(ur lStr);
  42                    }
  43           }  catch (Mal formedURLE xception e x) {
  44                e = new  WebService Exception( ex);
  45           }
  46           VA IDM_WSDL_L OCATION =  url;
  47           VA IDM_EXCEPT ION = e;
  48       }
  49  
  50       public  VAIdM() {
  51           su per(__getW sdlLocatio n(), VAIDM _QNAME);
  52       }
  53  
  54       public  VAIdM(Web ServiceFea ture... fe atures) {
  55           su per(__getW sdlLocatio n(), VAIDM _QNAME, fe atures);
  56       }
  57  
  58       public  VAIdM(URL  wsdlLocat ion) {
  59           su per(wsdlLo cation, VA IDM_QNAME) ;
  60       }
  61  
  62       public  VAIdM(URL  wsdlLocat ion, WebSe rviceFeatu re... feat ures) {
  63           su per(wsdlLo cation, VA IDM_QNAME,  features) ;
  64       }
  65  
  66       public  VAIdM(URL  wsdlLocat ion, QName  serviceNa me) {
  67           su per(wsdlLo cation, se rviceName) ;
  68       }
  69  
  70       public  VAIdM(URL  wsdlLocat ion, QName  serviceNa me, WebSer viceFeatur e... featu res) {
  71           su per(wsdlLo cation, se rviceName,  features) ;
  72       }
  73  
  74       /**
  75        * 
  76        * @re turn
  77        *      returns V AIdMPort
  78        */
  79       @WebEn dpoint(nam e = "VAIdM Port")
  80       public  VAIdMPort  getVAIdMP ort() {
  81             return sup er.getPort (new QName ("http:// URL           . DNS     ", "VAIdMP ort"), VAI dMPort.cla ss);
  82       }
  83  
  84       /**
  85        * 
  86        * @pa ram featur es
  87        *      A list of  {@link ja vax.xml.ws .WebServic eFeature}  to configu re on the  proxy.  Su pported fe atures not  in the <c ode>featur es</code>  parameter  will have  their defa ult values .
  88        * @re turn
  89        *      returns V AIdMPort
  90        */
  91       @WebEn dpoint(nam e = "VAIdM Port")
  92       public  VAIdMPort  getVAIdMP ort(WebSer viceFeatur e... featu res) {
  93             return sup er.getPort (new QName ("http:// URL           . DNS     ", "VAIdMP ort"), VAI dMPort.cla ss, featur es);
  94       }
  95  
  96       privat e static U RL __getWs dlLocation () {
  97           if  (VAIDM_EX CEPTION!=  null) {
  98                throw VA IDM_EXCEPT ION;
  99           }
  100           re turn VAIDM _WSDL_LOCA TION;
  101       }
  102  
  103   }