1 /*
2 * $Id: InboundMessageLossFlowTransactionsTestCase.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.jms.reliability;
12
13
14
15 /**
16 * Verify that no inbound messages are lost when exceptions occur.
17 * The message must either make it all the way to the SEDA queue (in the case of
18 * an asynchronous inbound endpoint), or be restored/rolled back at the source.
19 *
20 * In the case of JMS, this will cause the failed message to be redelivered if
21 * JMSRedelivery is configured.
22 */
23 public class InboundMessageLossFlowTransactionsTestCase extends InboundMessageLossTransactionsTestCase
24 {
25 @Override
26 protected String getConfigResources()
27 {
28 return "reliability/activemq-config.xml, reliability/inbound-message-loss-flow-transactions.xml";
29 }
30 }