View Javadoc

1   /*
2    * $Id: FilePersistenceTestCase.java 21762 2011-05-03 01:29:28Z mike.schilling $
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.util.queue;
12  
13  import org.mule.api.store.ListableObjectStore;
14  import org.mule.util.store.QueuePersistenceObjectStore;
15  
16  import java.io.Serializable;
17  
18  public class FilePersistenceTestCase extends AbstractTransactionQueueManagerTestCase
19  {
20      @Override
21      protected TransactionalQueueManager createQueueManager() throws Exception
22      {
23          ListableObjectStore<Serializable> store = new QueuePersistenceObjectStore<Serializable>(muleContext);
24  
25          TransactionalQueueManager mgr = new TransactionalQueueManager();
26  
27          mgr.setDefaultQueueConfiguration(new QueueConfiguration(0, store));
28          return mgr;
29      }
30  
31      @Override
32      protected boolean isPersistent()
33      {
34          return true;
35      }
36  }