1
2
3
4
5
6
7
8
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
65
66
67
68
69
70
71
72
73
74
75
76
77