You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2004/12/20 09:42:36 UTC

cvs commit: ws-axis/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/info WrapperInfo.java

samisa      2004/12/20 00:42:36

  Modified:    c/src/wsdl/org/apache/axis/wsdl/wsdl2ws WSDL2Ws.java
               c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/info
                        WrapperInfo.java
  Log:
  Fixed spelling mistakes in variable/method names. Changed 'trasport' to 'transport'."
  
  Revision  Changes    Path
  1.50      +1 -1      ws-axis/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/WSDL2Ws.java
  
  Index: WSDL2Ws.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/WSDL2Ws.java,v
  retrieving revision 1.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- WSDL2Ws.java	30 Nov 2004 16:15:06 -0000	1.49
  +++ WSDL2Ws.java	20 Dec 2004 08:42:36 -0000	1.50
  @@ -166,7 +166,7 @@
   
           //the service style (rpc|doc|msg)
           this.serviceStyle = bindingEntry.getBindingStyle().getName();
  -        //extract the trasport type as a uri
  +        //extract the transport type as a uri
           this.transportURI =
               SymbolTableParsingUtils.getTransportType(bindingEntry.getBinding());
           List operations = bindingEntry.getBinding().getBindingOperations();
  
  
  
  1.9       +8 -8      ws-axis/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/info/WrapperInfo.java
  
  Index: WrapperInfo.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/info/WrapperInfo.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- WrapperInfo.java	30 Nov 2004 16:15:07 -0000	1.8
  +++ WrapperInfo.java	20 Dec 2004 08:42:36 -0000	1.9
  @@ -36,8 +36,8 @@
       private String targetEngine;
       //output location
       private String targetOutputLocation;
  -    //trasport method specified in the binding
  -    private String trasportUri;
  +    //transport method specified in the binding
  +    private String transportUri;
       //target endpoint (the URI the service is deployed in)
       private String targetEndpointURI;
       //private target name space of the wsdl file 
  @@ -48,7 +48,7 @@
       String targetOutputLocation,
           String implStyle,
           String targetEngine,
  -        String trasportUri,
  +        String transportUri,
           String targetEndpointURI,
           String targetNameSpaceOfWSDL)
       {
  @@ -106,13 +106,13 @@
               this.targetEngine = WrapperConstants.CLIENT;
           }
   
  -        if (trasportUri == null)
  +        if (transportUri == null)
           {
  -            this.trasportUri = WrapperConstants.TRANSPORT_HTTP;
  +            this.transportUri = WrapperConstants.TRANSPORT_HTTP;
           }
           else
           {
  -            this.trasportUri = trasportUri;
  +            this.transportUri = transportUri;
           }
   
           if (targetEndpointURI == null)
  @@ -215,9 +215,9 @@
       /**
        * @return String
        */
  -    public String getTrasportUri()
  +    public String getTransportUri()
       {
  -        return trasportUri;
  +        return transportUri;
       }
   
   }