Package org.servicemix.jbi.servicedesc

Examples of org.servicemix.jbi.servicedesc.AbstractServiceEndpoint


     */
    public Document getEndpointDescriptor(ServiceEndpoint endpoint) throws JBIException {
        if (endpoint instanceof AbstractServiceEndpoint == false) {
            throw new JBIException("Descriptors can not be queried for external endpoints");
        }
        AbstractServiceEndpoint se = (AbstractServiceEndpoint) endpoint;
        Component component = componentRegistry.getComponent(se.getComponentNameSpace());
        return component.getServiceDescription(endpoint);
    }
View Full Code Here

TOP

Related Classes of org.servicemix.jbi.servicedesc.AbstractServiceEndpoint

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.