01: /*
02: * $Id: UnsupportedMessageRequester.java 10961 2008-02-22 19:01:02Z dfeist $
03: * --------------------------------------------------------------------------------------
04: * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
05: *
06: * The software in this package is published under the terms of the CPAL v1.0
07: * license, a copy of which has been included with this distribution in the
08: * LICENSE.txt file.
09: */
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
17: AbstractMessageRequester {
18:
19: public UnsupportedMessageRequester(InboundEndpoint endpoint) {
20: super (endpoint);
21: }
22:
23: protected MuleMessage doRequest(long timeout) throws Exception {
24: throw new UnsupportedOperationException(
25: "Request not supported for this transport");
26: }
27:
28: protected void doDispose() {
29: // empty
30: }
31:
32: protected void doConnect() throws Exception {
33: // empty
34: }
35:
36: protected void doDisconnect() throws Exception {
37: // empty
38: }
39:
40: }
|