1 /*
2 * $Id: InboundMessageLossFlowTestCase.java 22018 2011-05-27 20:55:34Z tcarlson $
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.http.reliability;
12
13
14 /**
15 * Verify that no inbound messages are lost when exceptions occur.
16 * The message must either make it all the way to the SEDA queue (in the case of
17 * an asynchronous inbound endpoint), or be restored/rolled back at the source.
18 *
19 * In the case of the HTTP transport, there is no way to restore the source message
20 * so an exception is simply returned to the client.
21 */
22 public class InboundMessageLossFlowTestCase extends InboundMessageLossTestCase
23 {
24 @Override
25 protected String getConfigResources()
26 {
27 return "reliability/inbound-message-loss-flow.xml";
28 }
29
30 }