1
2
3
4
5
6
7
8
9
10
11 package org.mule.providers.http.servlet;
12
13 import org.mule.providers.AbstractMessageReceiver;
14 import org.mule.umo.UMOComponent;
15 import org.mule.umo.UMOException;
16 import org.mule.umo.endpoint.UMOEndpoint;
17 import org.mule.umo.lifecycle.InitialisationException;
18 import org.mule.umo.provider.UMOConnector;
19
20
21
22
23
24
25
26 public class ServletMessageReceiver extends AbstractMessageReceiver
27 {
28 public ServletMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint)
29 throws InitialisationException
30 {
31 super(connector, component, endpoint);
32 }
33
34 protected void doDispose()
35 {
36
37 }
38
39 protected void doConnect() throws Exception
40 {
41
42 }
43
44 protected void doDisconnect() throws Exception
45 {
46
47 }
48
49 protected void doStart() throws UMOException
50 {
51
52 }
53
54 protected void doStop() throws UMOException
55 {
56
57 }
58
59 }