1 /*$Id: TreeClientFactory.java,v 1.2 2004/11/17 16:22:53 clq2 Exp $
2 * Created on 05-Nov-2004
3 *
4 * Copyright (C) AstroGrid. All rights reserved.
5 *
6 * This software is published under the terms of the AstroGrid
7 * Software License version 1.2, a copy of which has been included
8 * with this distribution in the LICENSE.txt file.
9 *
10 **/
11 package org.astrogrid.store.tree;
12
13 /*** Factory class, to isolate aladin code from the details of which implementation is being used for the Aladin Adapter.
14 * @author Noel Winstanley nw@jb.man.ac.uk 05-Nov-2004
15 *
16 */
17 public class TreeClientFactory {
18
19 /*** Construct a new AladinAdapterFactory
20 *
21 */
22 public TreeClientFactory() {
23 super();
24 }
25
26 /*** create a new instance of an aladin adapter
27 * @todo add seleciton of implementaiton based on config key*/
28 public TreeClient createClient() {
29 return new IterationSixTreeClient();
30 }
31
32 }
33
34
35 /*
36 $Log: TreeClientFactory.java,v $
37 Revision 1.2 2004/11/17 16:22:53 clq2
38 nww-itn07-704
39
40 Revision 1.1.2.1 2004/11/16 16:47:28 nw
41 copied aladinAdapter interfaces into a neutrally-named package.
42 deprecated original interfaces.
43 javadoc
44
45 Revision 1.2 2004/11/11 17:50:42 clq2
46 Noel's aladin stuff
47
48 Revision 1.1.2.1 2004/11/09 13:56:38 nw
49 first stab at an iteration6 implementation
50
51 Revision 1.1 2004/11/05 17:10:41 nw
52 created factory class to return instance of aladin adapter.
53 returns the mock for now.
54
55 */