]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.activemq/src/main/resources/org/argeo/slc/activemq/destinations.xml
Attachments management
[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 <!-- Events -->
8 <bean id="slcJms.destination.events" p:physicalName="events"
9 parent="slcJms.amTopic" />
10
11 <!-- Attachments -->
12 <bean id="slcJms.destination.attachment.add" p:physicalName="attachment.add"
13 parent="slcJms.amQueue" />
14
15 <!-- Agent service -->
16 <bean id="slcJms.destination.agent.register" p:physicalName="agent.register"
17 parent="slcJms.amTopic" />
18 <bean id="slcJms.destination.agent.unregister" p:physicalName="agent.unregister"
19 parent="slcJms.amTopic" />
20 <bean id="slcJms.destination.agent.request" p:physicalName="agent.request"
21 parent="slcJms.amQueue" />
22 <bean id="slcJms.destination.agent.response" p:physicalName="agent.response"
23 parent="slcJms.amQueue" />
24 <bean id="slcJms.destination.agent.pingAll" p:physicalName="agent.pingAll"
25 parent="slcJms.amTopic" />
26
27 <bean id="slcJms.destination.execution.event" p:physicalName="execution.event"
28 parent="slcJms.amQueue" />
29
30 <!-- Templates -->
31 <bean id="slcJms.amQueue" class="org.apache.activemq.command.ActiveMQQueue"
32 abstract="true" />
33 <bean id="slcJms.amTopic" class="org.apache.activemq.command.ActiveMQTopic"
34 abstract="true" />
35
36 </beans>