View Javadoc

1   /*$Id: ConeSearchDispatcher.java,v 1.3 2005/04/25 12:13:54 clq2 Exp $
2    * Created on 07-Feb-2005
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.jes.jobscheduler.dispatcher;
12  
13  import org.astrogrid.applications.component.CEAComponentManager;
14  import org.astrogrid.component.descriptor.ComponentDescriptor;
15  import org.astrogrid.workflow.beans.v1.Tool;
16  
17  import junit.framework.Test;
18  
19  /*** Dispatcher that will execute in-process cone searches.
20   * @author Noel Winstanley nw@jb.man.ac.uk 07-Feb-2005
21   *
22   */
23  public class ConeSearchDispatcher extends AbstractInProcessDispatcher implements 
24          ComponentDescriptor {
25  
26      /*** Construct a new InProcessConeSearchDispatcher
27       * 
28       */
29      public ConeSearchDispatcher(CEAComponentManager cea) {
30          super(cea);
31      }
32  
33  
34  
35  
36      /***@todo implement
37       * @see org.astrogrid.jes.jobscheduler.dispatcher.AbstractInProcessDispatcher#transformTool(org.astrogrid.workflow.beans.v1.Tool)
38       */
39      protected Tool transformTool(Tool tool) {
40          return tool;
41      }   
42  
43      /***
44       * @see org.astrogrid.component.descriptor.ComponentDescriptor#getName()
45       */
46      public String getName() {
47          return "ConeSearchDispatcher";
48      }
49  
50      /***
51       * @see org.astrogrid.component.descriptor.ComponentDescriptor#getDescription()
52       */
53      public String getDescription() {
54          return "Dispatcher for NVO cone-searches";
55      }
56  
57      /***
58       * @see org.astrogrid.component.descriptor.ComponentDescriptor#getInstallationTest()
59       */
60      public Test getInstallationTest() {
61          return null;
62      }
63  
64  
65  }
66  
67  
68  /* 
69  $Log: ConeSearchDispatcher.java,v $
70  Revision 1.3  2005/04/25 12:13:54  clq2
71  jes-nww-776-again
72  
73  Revision 1.2.20.1  2005/04/11 13:56:22  nw
74  organized imports
75  
76  Revision 1.2  2005/03/13 07:13:39  clq2
77  merging jes-nww-686 common-nww-686 workflow-nww-996 scripting-nww-995 cea-nww-994
78  
79  Revision 1.1.2.1  2005/03/11 14:04:03  nw
80  added new kinds of dispatcher.
81   
82  */