01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.servicemix.http.endpoints;
18:
19: import javax.jbi.component.ComponentContext;
20: import javax.jbi.messaging.Fault;
21: import javax.jbi.messaging.MessageExchange;
22: import javax.jbi.messaging.NormalizedMessage;
23: import javax.servlet.http.HttpServletRequest;
24: import javax.servlet.http.HttpServletResponse;
25:
26: /**
27: *
28: * @author gnodet
29: * @since 3.2
30: */
31: public interface HttpConsumerMarshaler {
32:
33: MessageExchange createExchange(HttpServletRequest request,
34: ComponentContext context) throws Exception;
35:
36: void sendOut(MessageExchange exchange, NormalizedMessage outMsg,
37: HttpServletRequest request, HttpServletResponse response)
38: throws Exception;
39:
40: void sendFault(MessageExchange exchange, Fault fault,
41: HttpServletRequest request, HttpServletResponse response)
42: throws Exception;
43:
44: void sendError(MessageExchange exchange, Exception error,
45: HttpServletRequest request, HttpServletResponse response)
46: throws Exception;
47:
48: void sendAccepted(MessageExchange exchange,
49: HttpServletRequest request, HttpServletResponse response)
50: throws Exception;
51:
52: }
|