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