KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > beans > message > Sender1_2


1 /*
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 1999 Bull S.A.
4  * Contact: jonas-team@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: Sender1_2.java,v 1.1 2004/07/09 14:40:18 coqp Exp $
23  * --------------------------------------------------------------------------
24  */

25
26 package org.objectweb.jonas.jtests.beans.message;
27
28 import java.rmi.RemoteException JavaDoc;
29 import javax.ejb.EJBObject JavaDoc;
30
31 /**
32  * Sender1_2 remote interface
33  */

34 public interface Sender1_2 extends EJBObject JavaDoc {
35
36     /**
37      * send messages on destination
38      * the transaction is demarcated before the session creation
39      * @param dest destination (topic or queue JNDI name)
40      * @param val value set in messages
41      * @param nb number of messages sent
42      * @param boolean commit transaction if true
43      */

44     void sendOnDestinationWithTxBeforeSession(String JavaDoc dest,
45                                               int val,
46                                               int nb,
47                                               boolean commit) throws RemoteException JavaDoc;
48
49     /**
50      * send messages on destination
51      * the transaction is demarcated after the session creation
52      * @param dest destination (topic or queue JNDI name)
53      * @param val value set in messages
54      * @param nb nb of messages sent
55      * @param boolean commit transaction if true
56      */

57
58     void sendOnDestinationWithTxAfterSession(String JavaDoc dest,
59                                               int val,
60                                               int nb,
61                                               boolean commit) throws RemoteException JavaDoc;
62     /**
63      * Check messages received.
64      * @param val value looked in messages received
65      * @param nb nb of messages that could be received
66      * @param sec nb of seconds max to wait for all messages
67      * @return actual nb of messages received
68      */

69     int check(int val, int nb, int sec) throws RemoteException JavaDoc;
70
71     /**
72      * Clean all entity beans for this value
73      * @param val value looked in messages
74      */

75     void clean(int val) throws RemoteException JavaDoc;
76 }
77
Popular Tags