]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.activemq/src/main/resources/org/argeo/slc/activemq/destinations.xml
Solve issue with selectors
[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
9 <!-- Agent service -->
10 <bean id="slcJms.destination.agent.register" p:physicalName="agent.register"
11 parent="slcJms.amTopic" />
12 <bean id="slcJms.destination.agent.unregister" p:physicalName="agent.unregister"
13 parent="slcJms.amTopic" />
14 <bean id="slcJms.destination.agent.newExecution" p:physicalName="agent.newExecution"
15 parent="slcJms.amTopic" />
16
17 <!-- Test result service -->
18 <bean id="slcJms.destination.test.create" p:physicalName="test.create"
19 parent="slcJms.amTopic" />
20 <bean id="slcJms.destination.test.addResultPart" p:physicalName="test.addResultPart"
21 parent="slcJms.amTopic" />
22 <bean id="slcJms.destination.test.close" p:physicalName="test.close"
23 parent="slcJms.amTopic" />
24
25 <!-- TSLC Execution service -->
26 <bean id="slcJms.destination.slcExecution.updateStatus"
27 p:physicalName="slcExecution.updateStatus" parent="slcJms.amTopic" />
28
29 <!-- Templates -->
30 <bean id="slcJms.amQueue" class="org.apache.activemq.command.ActiveMQQueue"
31 abstract="true" />
32 <bean id="slcJms.amTopic" class="org.apache.activemq.command.ActiveMQTopic"
33 abstract="true" />
34
35 </beans>