2013-03-27 17:12:52 -05:00
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2013-05-23 11:12:49 -05:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2013-03-27 17:12:52 -05:00
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
2013-05-29 16:19:28 -05:00
|
|
|
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
|
2013-03-27 17:12:52 -05:00
|
|
|
<bean id="logHandler" class="com.raytheon.uf.edex.event.handler.LogHandler" />
|
2013-05-20 12:23:41 -05:00
|
|
|
|
|
|
|
<bean factory-bean="eventBus" factory-method="register">
|
|
|
|
<constructor-arg ref="logHandler" />
|
|
|
|
</bean>
|
2013-03-27 17:12:52 -05:00
|
|
|
|
|
|
|
<bean id="eventPublishHandler" class="com.raytheon.uf.edex.event.handler.EventPublishHandler" />
|
|
|
|
<bean factory-bean="handlerRegistry" factory-method="register">
|
|
|
|
<constructor-arg value="com.raytheon.uf.common.event.EventPublishRequest" />
|
|
|
|
<constructor-arg ref="eventPublishHandler" />
|
|
|
|
</bean>
|
2012-11-26 18:13:13 -06:00
|
|
|
</beans>
|