Package services.echo.jaxrs

Examples of services.echo.jaxrs.Echo.echo()


    }

    @Test
    public void testInvokeReference() throws Exception {
        Echo echoComponent = node.getService(Echo.class, ECHO_COMPONENT_WITH_REFERENCE);
        String result = echoComponent.echo("ABC");
        Assert.assertEquals("echo: ABC", result);
    }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.