Package com.caucho.hessian.test
Interface Test
-
- All Known Implementing Classes:
TestHessianServlet
public interface TestThe Test service is a quick sanity check service. Developers of a new Hessian implementation can use this service as an initial test.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectecho(Object value)Echos the object to the server.voidfault()Throws an application fault.Stringhello()Hello, World.voidnullCall()Does nothing.intsubtract(int a, int b)Subtraction
-
-
-
Method Detail
-
nullCall
void nullCall()
Does nothing.
-
hello
String hello()
Hello, World.
-
subtract
int subtract(int a, int b)Subtraction
-
fault
void fault() throws IOExceptionThrows an application fault.- Throws:
IOException
-
-