1 23 24 package com.sun.enterprise.deployment.util.webservice; 25 26 31 32 public class SEIConfig { 33 34 private String webServiceName; 35 private String nameSpace; 36 private String packageName; 37 private String interfaceName; 38 private String servantName; 39 40 48 49 public SEIConfig(String svcName, String space, String pkg, String svcIntf, String svcImpl) { 50 this.webServiceName = svcName; 51 this.nameSpace = space; 52 this.packageName = pkg; 53 this.interfaceName = svcIntf; 54 this.servantName = svcImpl; 55 } 56 57 public String getWebServiceName() { return this.webServiceName; } 58 59 public String getNameSpace() { return this.nameSpace; } 60 61 public String getPackageName() { return this.packageName; } 62 63 public String getInterface() { return this.interfaceName; } 64 65 public String getServant() { return this.servantName; } 66 } 67 | Popular Tags |