KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > test > stateful > nested > ParentStatefulRemote


1 /*
2  * JBoss, Home of Professional Open Source
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7
8 package org.jboss.ejb3.test.stateful.nested;
9
10 /**
11  * Parent sfsb interface
12  *
13  * @author Ben Wang
14  * @version $Revision: 45372 $
15  */

16 public interface ParentStatefulRemote
17 {
18    int increment();
19
20    int getPostActivate();
21
22    int getPrePassivate();
23
24    void reset();
25
26    void longRunning() throws Exception JavaDoc;
27
28    void remove();
29 }
30
Popular Tags