1 22 package org.objectweb.petals.jbi.registry; 23 24 import java.io.Serializable ; 25 26 import javax.xml.namespace.QName ; 27 28 import org.objectweb.petals.jbi.management.service.EndpointService; 29 30 35 public class InternalEndpoint extends AbstractEndpoint implements Serializable { 36 37 40 private static final long serialVersionUID = 1L; 41 42 47 public InternalEndpoint(QName serviceName, String endpointName, 48 String componentName, String containerName, 49 EndpointService endpointService) { 50 super(serviceName, endpointName, componentName, containerName, 51 EndpointType.INTERNAL, endpointService); 52 } 53 } 54 | Popular Tags |