1 /*
2 * @(#)GenConnectionFactoryImpl.java
3 *
4 * JFoxMQ the open source JMS MOM.
5 *
6 * Corpyright 2002-2003 Huihoo Power, Inc. All Rights Reserved. This software
7 * is licensed under LGPL license.
8 *
9 * For more information, please visit: http://www.huihoo.org
10 */
11
12 package org.huihoo.jfox.ms.crb;
13
14 /***
15 * only for test.It is simple implementation.
16 *
17 * @author Liang.Zhao (zlushangnwpu@sina.com)
18 * @version
19 * @created July 23th 2003
20
21 */
22 public class GenConnectionFactoryImpl implements java.io.Serializable {
23 private LinkServer link;
24
25 public GenConnectionFactoryImpl(LinkServer l) {
26 link = l;
27 }
28
29 public LinkServer getLinkServer() {
30 return link;
31 }
32 }
This page was automatically generated by Maven