diff -r cc682329886b -r b0610cd08440 src/share/jaxws_classes/com/sun/xml/internal/ws/model/JavaMethodImpl.java --- a/src/share/jaxws_classes/com/sun/xml/internal/ws/model/JavaMethodImpl.java Thu Sep 26 10:43:28 2013 -0700 +++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/model/JavaMethodImpl.java Fri Oct 04 16:21:34 2013 +0100 @@ -25,7 +25,6 @@ package com.sun.xml.internal.ws.model; -import com.sun.istack.internal.NotNull; import com.sun.xml.internal.bind.api.TypeReference; import com.sun.xml.internal.ws.api.databinding.MetadataReader; import com.sun.xml.internal.ws.api.model.JavaMethod; @@ -216,14 +215,14 @@ * @return soap:Body's first child name for request message. */ public @Nullable QName getRequestPayloadName() { - return (wsdlOperation != null)? wsdlOperation.getReqPayloadName(): requestPayloadName; + return (wsdlOperation != null)? wsdlOperation.getRequestPayloadName(): requestPayloadName; } /** * @return soap:Body's first child name for response message. */ public @Nullable QName getResponsePayloadName() { - return (mep == MEP.ONE_WAY) ? null : wsdlOperation.getResPayloadName(); + return (mep == MEP.ONE_WAY) ? null : wsdlOperation.getResponsePayloadName(); } /**