1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
package org.mule.transport; |
12 | |
|
13 | |
import org.mule.api.MuleMessage; |
14 | |
import org.mule.api.endpoint.InboundEndpoint; |
15 | |
|
16 | |
public final class UnsupportedMessageRequester extends AbstractMessageRequester |
17 | |
{ |
18 | |
|
19 | |
public UnsupportedMessageRequester(InboundEndpoint endpoint) |
20 | |
{ |
21 | 0 | super(endpoint); |
22 | 0 | } |
23 | |
|
24 | |
protected MuleMessage doRequest(long timeout) throws Exception |
25 | |
{ |
26 | 0 | throw new UnsupportedOperationException("Request not supported for this transport"); |
27 | |
} |
28 | |
|
29 | |
protected void doInitialise() |
30 | |
{ |
31 | |
|
32 | 0 | } |
33 | |
|
34 | |
protected void doDispose() |
35 | |
{ |
36 | |
|
37 | 0 | } |
38 | |
|
39 | |
protected void doConnect() throws Exception |
40 | |
{ |
41 | |
|
42 | 0 | } |
43 | |
|
44 | |
protected void doDisconnect() throws Exception |
45 | |
{ |
46 | |
|
47 | 0 | } |
48 | |
|
49 | |
protected void doStart() |
50 | |
{ |
51 | |
|
52 | 0 | } |
53 | |
|
54 | |
protected void doStop() |
55 | |
{ |
56 | |
|
57 | 0 | } |
58 | |
} |