KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > activemq > transport > http > HttpJmsDurableTopicSendReceiveTest


1 /**
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one or more
4  * contributor license agreements. See the NOTICE file distributed with
5  * this work for additional information regarding copyright ownership.
6  * The ASF licenses this file to You under the Apache License, Version 2.0
7  * (the "License"); you may not use this file except in compliance with
8  * the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */

18 package org.apache.activemq.transport.http;
19
20 import org.apache.activemq.JmsDurableTopicSendReceiveTest;
21 import org.apache.activemq.ActiveMQConnectionFactory;
22 import org.apache.activemq.broker.BrokerService;
23
24 public class HttpJmsDurableTopicSendReceiveTest extends JmsDurableTopicSendReceiveTest {
25     protected BrokerService broker;
26
27     protected void setUp() throws Exception JavaDoc {
28         if (broker == null) {
29             broker = createBroker();
30             broker.start();
31         }
32         super.setUp();
33     }
34
35     protected void tearDown() throws Exception JavaDoc {
36         super.tearDown();
37         if (broker != null) {
38             broker.stop();
39         }
40     }
41
42     protected ActiveMQConnectionFactory createConnectionFactory() {
43         ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory(getBrokerURL());
44         return connectionFactory;
45     }
46
47     protected String JavaDoc getBrokerURL() {
48         return "http://localhost:8161";
49     }
50
51     protected BrokerService createBroker() throws Exception JavaDoc {
52         BrokerService answer = new BrokerService();
53         answer.setPersistent(false);
54         answer.addConnector(getBrokerURL());
55         return answer;
56     }
57 }
58
Popular Tags