Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
JettyHttpMessageReceiver |
|
| 1.0;1 |
1 | /* | |
2 | * $Id: JettyHttpMessageReceiver.java 20321 2010-11-24 15:21:24Z dfeist $ | |
3 | * -------------------------------------------------------------------------------------- | |
4 | * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com | |
5 | * | |
6 | * The software in this package is published under the terms of the CPAL v1.0 | |
7 | * license, a copy of which has been included with this distribution in the | |
8 | * LICENSE.txt file. | |
9 | */ | |
10 | ||
11 | package org.mule.transport.servlet.jetty; | |
12 | ||
13 | import org.mule.api.construct.FlowConstruct; | |
14 | import org.mule.api.endpoint.InboundEndpoint; | |
15 | import org.mule.api.lifecycle.CreateException; | |
16 | import org.mule.api.transport.Connector; | |
17 | import org.mule.transport.AbstractMessageReceiver; | |
18 | ||
19 | /** | |
20 | * <code>JettyHttpMessageReceiver</code> is a simple http server that can be used to | |
21 | * listen for http requests on a particular port | |
22 | */ | |
23 | public class JettyHttpMessageReceiver extends AbstractMessageReceiver | |
24 | { | |
25 | public static final String JETTY_SERVLET_CONNECTOR_NAME = "_jettyConnector"; | |
26 | ||
27 | public JettyHttpMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint) | |
28 | throws CreateException | |
29 | { | |
30 | 0 | super(connector, flowConstruct, endpoint); |
31 | 0 | } |
32 | } |