View Javadoc

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