src/share/jaxws_classes/com/sun/xml/internal/ws/model/JavaMethodImpl.java

changeset 408
b0610cd08440
parent 368
0989ad8c0860
child 637
9c07ef4934dd
     1.1 --- a/src/share/jaxws_classes/com/sun/xml/internal/ws/model/JavaMethodImpl.java	Thu Sep 26 10:43:28 2013 -0700
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/model/JavaMethodImpl.java	Fri Oct 04 16:21:34 2013 +0100
     1.3 @@ -25,7 +25,6 @@
     1.4  
     1.5  package com.sun.xml.internal.ws.model;
     1.6  
     1.7 -import com.sun.istack.internal.NotNull;
     1.8  import com.sun.xml.internal.bind.api.TypeReference;
     1.9  import com.sun.xml.internal.ws.api.databinding.MetadataReader;
    1.10  import com.sun.xml.internal.ws.api.model.JavaMethod;
    1.11 @@ -216,14 +215,14 @@
    1.12       * @return soap:Body's first child name for request message.
    1.13       */
    1.14      public @Nullable QName getRequestPayloadName() {
    1.15 -        return (wsdlOperation != null)? wsdlOperation.getReqPayloadName(): requestPayloadName;
    1.16 +        return (wsdlOperation != null)? wsdlOperation.getRequestPayloadName(): requestPayloadName;
    1.17      }
    1.18  
    1.19      /**
    1.20       * @return soap:Body's first child name for response message.
    1.21       */
    1.22      public @Nullable QName getResponsePayloadName() {
    1.23 -        return (mep == MEP.ONE_WAY) ? null : wsdlOperation.getResPayloadName();
    1.24 +        return (mep == MEP.ONE_WAY) ? null : wsdlOperation.getResponsePayloadName();
    1.25      }
    1.26  
    1.27      /**

mercurial