1 23 24 package com.sun.enterprise.deployment.util.webservice; 25 26 31 32 public class WSDLConfig { 33 34 private String webServiceName; 35 private String wsdlLocation; 36 private String packageName; 37 38 44 45 public WSDLConfig(String wsName, String wsdl, String pkg) { 46 this.webServiceName = wsName; 47 this.wsdlLocation = wsdl; 48 this.packageName = pkg; 49 } 50 51 public String getWebServiceName() { return this.webServiceName; } 52 53 public String getWsdlLocation() { return this.wsdlLocation; } 54 55 public String getPackageName() { return this.packageName; } 56 } 57 | Popular Tags |