KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > joram > mom > dest > ClusterAck


1 /*
2  * JORAM: Java(TM) Open Reliable Asynchronous Messaging
3  * Copyright (C) 2001 - ScalAgent Distributed Technologies
4  * Copyright (C) 1996 - Dyade
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  * Initial developer(s): Frederic Maistre (INRIA)
22  * Contributor(s):
23  */

24 package org.objectweb.joram.mom.dest;
25
26 import fr.dyade.aaa.agent.AgentId;
27 import fr.dyade.aaa.agent.Notification;
28 import org.objectweb.joram.mom.notifications.ClusterRequest;
29
30 /**
31  * A <code>ClusterAck</code> instance is a notification sent by a topic
32  * requested to join a cluster.
33  */

34 class ClusterAck extends Notification
35 {
36   /** The originial client request. */
37   ClusterRequest request;
38   /** The original requester. */
39   AgentId requester;
40   /** <code>true</code> if the topic can join the cluster. */
41   boolean ok;
42   /** Info. */
43   String JavaDoc info;
44
45   /**
46    * Constructs a <code>ClusterAck</code> instance.
47    *
48    * @param clusterTest The <code>ClusterTest</code> this notification
49    * replies to.
50    * @param ok <code>true</code> if the topic can join the cluster.
51    * @param info Related info.
52    */

53   ClusterAck(ClusterTest clusterTest, boolean ok, String JavaDoc info)
54   {
55     this.request = clusterTest.request;
56     this.requester = clusterTest.requester;
57     this.ok = ok;
58     this.info = info;
59   }
60 }
61
Popular Tags