1
2
3
4
5
6
7
8
9
10
11 package org.mule.tck.testmodels.mule;
12
13 import org.mule.umo.UMOException;
14 import org.mule.umo.lifecycle.InitialisationException;
15 import org.mule.umo.manager.UMOAgent;
16
17
18
19
20 public class TestAgent implements UMOAgent
21 {
22 public String getName()
23 {
24 return "Test Agent";
25 }
26
27 public void setName(String name)
28 {
29
30 }
31
32 public String getDescription()
33 {
34 return "Test JMX Agent";
35 }
36
37 public void initialise() throws InitialisationException
38 {
39
40 }
41
42 public void start() throws UMOException
43 {
44
45 }
46
47 public void stop() throws UMOException
48 {
49
50 }
51
52 public void dispose()
53 {
54
55 }
56
57 public void registered()
58 {
59
60 }
61
62 public void unregistered()
63 {
64
65 }
66 }