31 lines
No EOL
1.4 KiB
XML
31 lines
No EOL
1.4 KiB
XML
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
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.xsd">
|
|
|
|
<bean id="notificationListenerFactory"
|
|
class="com.raytheon.uf.edex.registry.ebxml.services.notification.NotificationListenerFactory">
|
|
<constructor-arg ref="EmailSender" />
|
|
<constructor-arg ref="registryWebServiceClient" />
|
|
</bean>
|
|
|
|
<bean name="EmailSender"
|
|
class="com.raytheon.uf.edex.registry.ebxml.services.notification.EmailSender">
|
|
<constructor-arg ref="ebxmlEmailEnabled" />
|
|
<constructor-arg ref="extrinsicObjectDao" />
|
|
</bean>
|
|
|
|
<bean name="RegistryNotificationManager"
|
|
class="com.raytheon.uf.edex.registry.ebxml.services.notification.RegistryNotificationManager">
|
|
<property name="auditableEventDao" ref="AuditableEventTypeDao" />
|
|
<property name="queryManager" ref="queryServiceImpl" />
|
|
</bean>
|
|
|
|
<bean name="RegistrySubscriptionManager"
|
|
class="com.raytheon.uf.edex.registry.ebxml.services.notification.RegistrySubscriptionManager">
|
|
<property name="subscriptionDao" ref="subscriptionTypeDao" />
|
|
<property name="notificationManager" ref="RegistryNotificationManager" />
|
|
<property name="notificationListenerFactory" ref="notificationListenerFactory" />
|
|
</bean>
|
|
|
|
</beans> |