KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > joram > client > jms > ha > local > TopicHALocalConnectionFactory


1 /*
2  * JORAM: Java(TM) Open Reliable Asynchronous Messaging
3  * Copyright (C) 2004 - ScalAgent Distributed Technologies
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA.
19  *
20  * Initial developer(s): David Feliot (ScalAgent DT)
21  */

22 package org.objectweb.joram.client.jms.ha.local;
23
24 import org.objectweb.joram.client.jms.*;
25
26 public class TopicHALocalConnectionFactory
27     extends org.objectweb.joram.client.jms.TopicConnectionFactory {
28
29   public TopicHALocalConnectionFactory() {
30     super("", -1);
31   }
32
33   /**
34    * Method inherited from the <code>TopicConnectionFactory</code> class.
35    *
36    * @exception JMSSecurityException If the user identification is incorrect.
37    */

38   public javax.jms.TopicConnection JavaDoc
39          createTopicConnection(String JavaDoc name, String JavaDoc password)
40          throws javax.jms.JMSException JavaDoc
41   {
42     HALocalConnection lc = new HALocalConnection(
43       name, password);
44     return new TopicConnection(params, lc);
45   }
46
47   /**
48    * Method inherited from the <code>ConnectionFactory</code> class.
49    *
50    * @exception JMSSecurityException If the user identification is incorrect.
51    * @exception IllegalStateException If the server is not listening.
52    */

53   public javax.jms.Connection JavaDoc
54       createConnection(String JavaDoc name, String JavaDoc password)
55     throws javax.jms.JMSException JavaDoc
56   {
57     HALocalConnection lc = new HALocalConnection(
58       name, password);
59     return new Connection(params, lc);
60   }
61
62   /**
63    * Admin method creating a <code>javax.jms.ConnectionFactory</code>
64    * instance for creating HA local connections with a given server.
65    */

66   public static javax.jms.TopicConnectionFactory JavaDoc create()
67   {
68     return new TopicHALocalConnectionFactory();
69   }
70 }
71
Popular Tags