View Javadoc

1   /*
2    * $Id: InboundMessageLossClientAckTestCase.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   * 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 JMS, this will cause the failed message to be redelivered if 
20   * JMSRedelivery is configured.
21   */
22  public class InboundMessageLossClientAckTestCase extends InboundMessageLossTestCase
23  {
24      @Override
25      protected String getConfigResources()
26      {
27          return "reliability/activemq-clientack-config.xml, reliability/inbound-message-loss.xml";
28      }
29  }
30  
31