]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.activemq/src/main/resources/org/argeo/slc/activemq/destinations.xml
Introduce JMS based notifications
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.activemq / src / main / resources / org / argeo / slc / activemq / destinations.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"
5 default-lazy-init="false">
6
7 <!-- Destinations -->
8 <bean id="slcJms.destination.agent.register" p:physicalName="agent.register"
9 parent="slcJms.amTopic" />
10 <bean id="slcJms.destination.agent.unregister" p:physicalName="agent.unregister"
11 parent="slcJms.amTopic" />
12 <bean id="slcJms.destination.agent.newExecution" p:physicalName="agent.newExecution"
13 parent="slcJms.amTopic" />
14
15 <bean id="slcJms.destination.test.create" p:physicalName="test.create"
16 parent="slcJms.amTopic" />
17 <bean id="slcJms.destination.test.addResultPart" p:physicalName="test.addResultPart"
18 parent="slcJms.amTopic" />
19 <bean id="slcJms.destination.test.close" p:physicalName="test.close"
20 parent="slcJms.amTopic" />
21
22 <!-- Templates -->
23 <bean id="slcJms.amQueue" class="org.apache.activemq.command.ActiveMQQueue"
24 abstract="true" />
25 <bean id="slcJms.amTopic" class="org.apache.activemq.command.ActiveMQTopic"
26 abstract="true" />
27
28 </beans>