blob: a55ebbe2e91dc942426c44d3d5bbb86079119dba (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package examples.stateful.interfaces;
import javax.ejb.Remote;
@Remote
public interface Cart {
public void addItem();
public int getItems();
public void remove1() throws Exception;
public void remove2() throws Exception;
}
|