Package org.apache.servicemix.common

Examples of org.apache.servicemix.common.ResolvedEndpoint


*/
public class UriConfigurationTest extends TestCase {


    public void testUriConfiguration() throws Exception {
        ServiceEndpoint serviceEndpoint = new ResolvedEndpoint("xmpp://servicemix-user@localhost/test-user@localhost", new QName("test"));

        XMPPComponent component = new XMPPComponent();
        PrivateChatEndpoint endpoint = (PrivateChatEndpoint) component.createEndpoint(serviceEndpoint);
        assertNotNull("Should have created an endpoint", endpoint);

View Full Code Here


*/
public class UriConfigurationTest extends TestCase {


    public void testUriConfiguration() throws Exception {
        ServiceEndpoint serviceEndpoint = new ResolvedEndpoint("xmpp://servicemix-user@localhost/test-user@localhost", new QName("test"));

        XMPPComponent component = new XMPPComponent();
        PrivateChatEndpoint endpoint = (PrivateChatEndpoint) component.createEndpoint(serviceEndpoint);
        assertNotNull("Should have created an endpoint", endpoint);

View Full Code Here

TOP

Related Classes of org.apache.servicemix.common.ResolvedEndpoint

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.