Package org.switchyard.component.jca

Examples of org.switchyard.component.jca.EndpointProxy


    }

    @Override
    public MessageEndpoint createEndpoint(XAResource xaResource, long timeout)
            throws UnavailableException {
        EndpointProxy handler = new EndpointProxy(_metadata, this, xaResource);
        return (MessageEndpoint) Proxy.newProxyInstance(Thread.currentThread().getContextClassLoader(),
                                                        new Class<?>[] {_metadata.getListenerInterface(),MessageEndpoint.class},
                                                        handler);
    }
View Full Code Here

TOP

Related Classes of org.switchyard.component.jca.EndpointProxy

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.