| java.lang.Object org.ow2.easybeans.examples.statelessbean.StatelessBean
StatelessBean | public class StatelessBean implements StatelessRemote(Code) | | Simple stateless bean.
author: Florent Benoit |
Method Summary | |
public int | add(int a, int b) Compute a + b. | public int | div(int a, int b) Divide a by b. | public void | helloWorld() Hello world. | public void | notInterceptedMethod() Methods without interceptors. | public Object | trace(InvocationContext invocationContext) Trace method's time. |
add | public int add(int a, int b)(Code) | | Compute a + b.
Parameters: a - first int Parameters: b - second int a + b |
div | public int div(int a, int b)(Code) | | Divide a by b.
Parameters: a - first int Parameters: b - second int a / b |
helloWorld | public void helloWorld()(Code) | | Hello world.
|
notInterceptedMethod | public void notInterceptedMethod()(Code) | | Methods without interceptors.
|
trace | public Object trace(InvocationContext invocationContext) throws Exception(Code) | | Trace method's time.
Parameters: invocationContext - contains attributes of invocation method's invocation result throws: Exception - if invocation fails |
|
|