org.ow2.easybeans.examples.statelessbean
Interface StatelessLocal

All Known Subinterfaces:
StatelessRemote
All Known Implementing Classes:
StatelessBean

public interface StatelessLocal

Simple interface for a stateless bean. It acts as a local interface.

Author:
Florent Benoit

Method Summary
 int add(int a, int b)
          Compute a + b.
 int div(int a, int b)
          Divide a by b.
 void helloWorld()
          Hello world.
 void notInterceptedMethod()
          Methods without interceptors.
 

Method Detail

helloWorld

void helloWorld()
Hello world.


add

int add(int a,
        int b)
Compute a + b.

Parameters:
a - first int
b - second int
Returns:
a + b

div

int div(int a,
        int b)
Divide a by b.

Parameters:
a - first int
b - second int
Returns:
a / b

notInterceptedMethod

void notInterceptedMethod()
Methods without interceptors.



Copyright © 2006-2010 OW2 Consortium. All Rights Reserved.