Package org.switchyard.remote

Examples of org.switchyard.remote.RemoteEndpoint


    }
   
    @Test
    public void multipleEndpoints() {
        // register endpoints for each service
        RemoteEndpoint ep1 = new RemoteEndpoint().setServiceName(TEST_SERVICE1).setEndpoint("ep1");
        RemoteEndpoint ep2 = new RemoteEndpoint().setServiceName(TEST_SERVICE1).setEndpoint("ep2");
        RemoteEndpoint ep3 = new RemoteEndpoint().setServiceName(TEST_SERVICE2).setEndpoint("ep3");
        RemoteEndpoint ep4 = new RemoteEndpoint().setServiceName(TEST_SERVICE2).setEndpoint("ep4");
        registry.addEndpoint(ep1);
        registry.addEndpoint(ep2);
        registry.addEndpoint(ep3);
        registry.addEndpoint(ep4);
       
View Full Code Here

TOP

Related Classes of org.switchyard.remote.RemoteEndpoint

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.