1 26 27 package org.objectweb.jonas_ws.wsgen.generator.axis; 28 29 import org.objectweb.jonas_ejb.deployment.api.SessionStatelessDesc; 30 31 36 public class VcBean { 37 38 41 private String jndiName; 42 43 46 private String serviceEndpointInterface; 47 48 53 public VcBean(SessionStatelessDesc ssd) { 54 55 jndiName = ssd.getJndiServiceEndpointName(); 57 58 serviceEndpointInterface = ssd.getServiceEndpointClass().getName(); 60 61 } 62 63 68 public String getServiceEndpointJndiName() { 69 return jndiName; 70 } 71 72 77 public String getServiceEndpointInterfaceName() { 78 return serviceEndpointInterface; 79 } 80 } | Popular Tags |