1 /** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE 4 * file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file 5 * to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the 6 * License. You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on 11 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the 12 * specific language governing permissions and limitations under the License. 13 */ 14 15 package org.apache.activemq.usecases; 16 17 import java.io.File; 18 import java.io.IOException; 19 import org.apache.activemq.store.PersistenceAdapter; 20 import org.apache.activemq.store.kahadaptor.KahaPersistenceAdapter; 21 22 /** 23 * @version $Revision: 1.1.1.1 $ 24 */ 25 public class KahaDurableSubscriptionTest extends DurableSubscriptionTestSupport{ 26 27 protected PersistenceAdapter createPersistenceAdapter() throws IOException{ 28 File dataDir=new File("target/test-data/durableKaha"); 29 KahaPersistenceAdapter adaptor=new KahaPersistenceAdapter(); 30 adaptor.setDirectory(dataDir); 31 return adaptor; 32 } 33 } 34