KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * JORAM: Java(TM) Open Reliable Asynchronous Messaging
3  * Copyright (C) 2004 - 2007 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): ScalAgent Distributed Technologies
21  */

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

39   public javax.jms.Connection JavaDoc
40       createConnection(String JavaDoc name, String JavaDoc password)
41     throws javax.jms.JMSException JavaDoc {
42     HALocalConnection lc = new HALocalConnection(name, password);
43     return new Connection(params, lc);
44   }
45
46   /**
47    * Admin method creating a <code>javax.jms.ConnectionFactory</code>
48    * instance for creating HA local connections with a given server.
49    */

50   public static javax.jms.ConnectionFactory JavaDoc create() {
51     return new HALocalConnectionFactory();
52   }
53 }
54
Popular Tags