37303. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/12/2018 3:21:08 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.

37303.1 Files compared

# Location File Last Modified
1 CareT v1_iter1_build_2.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\oit\oed\vaww VAIdM.java Mon Apr 9 18:52:38 2018 UTC
2 CareT v1_iter1_build_2.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\oit\oed\vaww VAIdM.java Wed Apr 11 19:11:51 2018 UTC

37303.2 Comparison summary

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

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

37303.4 Active regular expressions

No regular expressions were active.

37303.5 Comparison detail

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