01: /*
02: * JBoss, Home of Professional Open Source.
03: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
04: * as indicated by the @author tags. See the copyright.txt file in the
05: * distribution for a full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package org.jboss.test.cts.interfaces;
23:
24: import java.rmi.RemoteException;
25: import javax.ejb.CreateException;
26: import javax.ejb.EJBObject;
27: import javax.ejb.RemoveException;
28: import org.jboss.test.cts.keys.AccountPK;
29:
30: /**
31: * Interface StatefulSession
32: *
33: * @author Scott.Stark@jboss.org
34: * @version $Revision: 57211 $
35: */
36: public interface StatefulSession extends EJBObject {
37: public String getTestName() throws RemoteException;
38:
39: public String method1(String msg) throws RemoteException;
40:
41: public void incCounter() throws RemoteException;
42:
43: public void decCounter() throws RemoteException;
44:
45: public int getCounter() throws RemoteException;
46:
47: public void setCounter(int value) throws RemoteException;
48:
49: public BeanContextInfo getBeanContextInfo() throws RemoteException;
50:
51: public void loopbackTest() throws RemoteException;
52:
53: public void loopbackTest(EJBObject obj) throws RemoteException;
54:
55: /** Has ejbActivate been called */
56: public boolean getWasActivated() throws RemoteException;
57:
58: /** Has ejbPassivate been called */
59: public boolean getWasPassivated() throws RemoteException;
60:
61: public void createLocalEntity(AccountPK pk, String personsName)
62: throws CreateException, RemoteException;
63:
64: public String readAndRemoveEntity() throws RemoveException,
65: RemoteException;
66:
67: public void createSessionHandle() throws RemoteException;
68:
69: public String useSessionHandle(String arg) throws RemoteException;
70:
71: public void createStatefulSessionHandle(String testName)
72: throws RemoteException;
73:
74: public void useStatefulSessionHandle() throws RemoteException;
75:
76: public void createSessionRef() throws RemoteException;
77:
78: public String useSessionRef() throws RemoteException;
79:
80: public void ping() throws RemoteException;
81:
82: public void sleep(long wait) throws RemoteException;
83:
84: void testBadUserTx() throws RemoteException;
85: }
|