1 7 package org.jboss.webservice.metadata.jaxrpcmapping; 8 9 11 import javax.xml.namespace.QName ; 12 13 19 public class WsdlReturnValueMapping 20 { 21 private ServiceEndpointMethodMapping serviceEndpointMethodMapping; 23 24 private String methodReturnValue; 26 private QName wsdlMessage; 28 private String wsdlMessagePartName; 30 31 public WsdlReturnValueMapping(ServiceEndpointMethodMapping serviceEndpointMethodMapping) 32 { 33 this.serviceEndpointMethodMapping = serviceEndpointMethodMapping; 34 } 35 36 public ServiceEndpointMethodMapping getServiceEndpointMethodMapping() 37 { 38 return serviceEndpointMethodMapping; 39 } 40 41 public String getMethodReturnValue() 42 { 43 return methodReturnValue; 44 } 45 46 public void setMethodReturnValue(String methodReturnValue) 47 { 48 this.methodReturnValue = methodReturnValue; 49 } 50 51 public QName getWsdlMessage() 52 { 53 return wsdlMessage; 54 } 55 56 public void setWsdlMessage(QName wsdlMessage) 57 { 58 this.wsdlMessage = wsdlMessage; 59 } 60 61 public String getWsdlMessagePartName() 62 { 63 return wsdlMessagePartName; 64 } 65 66 public void setWsdlMessagePartName(String wsdlMessagePartName) 67 { 68 this.wsdlMessagePartName = wsdlMessagePartName; 69 } 70 } 71 | Popular Tags |