1 19 27 28 package org.netbeans.modules.websvc.core; 29 30 import java.net.URL ; 31 32 36 public class WebServiceReference { 37 38 private URL wsdlURL; 39 private String webServiceName; 40 private String moduleName; 41 42 public WebServiceReference(URL wsdlURL, String webServiceName, String moduleName) { 43 this.wsdlURL = wsdlURL; 44 this.webServiceName = webServiceName; 45 this.moduleName = moduleName; 46 } 47 48 public URL getWsdlURL(){ 49 return wsdlURL; 50 } 51 52 public String getWebServiceName(){ 53 return webServiceName; 54 } 55 56 public String getModuleName(){ 57 return moduleName; 58 } 59 60 } 61 | Popular Tags |