You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by tm...@apache.org on 2013/06/05 16:03:40 UTC

svn commit: r1489880 - /activemq/trunk/activemq-unit-tests/src/test/resources/org/apache/activemq/broker/virtual/virtual-topics-and-interceptor.xml

Author: tmielke
Date: Wed Jun  5 14:03:40 2013
New Revision: 1489880

URL: http://svn.apache.org/r1489880
Log:
AMQ-4571: JUnit test added with broker configuration

Added:
    activemq/trunk/activemq-unit-tests/src/test/resources/org/apache/activemq/broker/virtual/virtual-topics-and-interceptor.xml

Added: activemq/trunk/activemq-unit-tests/src/test/resources/org/apache/activemq/broker/virtual/virtual-topics-and-interceptor.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-unit-tests/src/test/resources/org/apache/activemq/broker/virtual/virtual-topics-and-interceptor.xml?rev=1489880&view=auto
==============================================================================
--- activemq/trunk/activemq-unit-tests/src/test/resources/org/apache/activemq/broker/virtual/virtual-topics-and-interceptor.xml (added)
+++ activemq/trunk/activemq-unit-tests/src/test/resources/org/apache/activemq/broker/virtual/virtual-topics-and-interceptor.xml Wed Jun  5 14:03:40 2013
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+
+<!-- this file can only be parsed using the xbean-spring library -->
+<!-- START SNIPPET: xbean -->
+<beans 
+  xmlns="http://www.springframework.org/schema/beans" 
+  xmlns:amq="http://activemq.apache.org/schema/core"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+  http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd">
+
+  <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" />
+
+  <broker xmlns="http://activemq.apache.org/schema/core" persistent="false">
+
+
+    <destinationInterceptors>
+      <!--  custom destination interceptor -->
+      <bean xmlns="http://www.springframework.org/schema/beans" class="org.apache.activemq.broker.virtual.DestinationInterceptorDurableSubTest$SimpleDestinationInterceptor" />
+
+      <virtualDestinationInterceptor>
+        <virtualDestinations>
+          <virtualTopic name=">" prefix="VirtualTopicConsumers.*." selectorAware="false"/>
+        </virtualDestinations>
+      </virtualDestinationInterceptor>
+    </destinationInterceptors>
+
+    <managementContext>
+      <managementContext createConnector="true" connectorPort="1299"/>
+    </managementContext>
+  </broker>
+
+</beans>
+<!-- END SNIPPET: xbean -->