1 22 package org.objectweb.petals.jbi.registry; 23 24 import java.io.Serializable ; 25 26 import javax.jbi.servicedesc.ServiceEndpoint; 27 28 33 public class ExternalEndpoint extends AbstractEndpoint implements 34 ServiceEndpoint, Serializable { 35 36 39 private static final long serialVersionUID = 1L; 40 41 44 public ExternalEndpoint(ServiceEndpoint endpoint, String componentname, 45 String containerName) { 46 super(endpoint.getServiceName(), endpoint.getEndpointName(), 47 componentname, containerName, EndpointType.EXTERNAL, null); 48 } 49 50 } 51 | Popular Tags |