Change-Id: I87783b45692c84cf851fb5695dae7efa79308655 Former-commit-id: 323bdc5919de9f04849e325dfdeb868ccdb39603
59 lines
2.6 KiB
XML
59 lines
2.6 KiB
XML
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:amq="http://activemq.apache.org/schema/core" 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-2.0.xsd
|
|
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd
|
|
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
|
|
|
|
<!-- <bean id="ebxmlSessionFactory" class="org.hibernate.impl.SessionFactoryImpl" /> -->
|
|
<!-- QUERY -->
|
|
<!-- Define concrete implementation of the service -->
|
|
<bean id="queryServiceImpl"
|
|
class="com.raytheon.uf.edex.registry.ebxml.services.query.QueryManagerImpl" >
|
|
<property name="queryTypeMgr" ref="queryTypeManager"/>
|
|
</bean>
|
|
|
|
<!-- NOTIFICATION LISTENER -->
|
|
<!-- Define concrete implementation of the service -->
|
|
<bean id="notificationServiceImpl"
|
|
class="com.raytheon.uf.edex.registry.ebxml.services.notification.NotificationListenerImpl" />
|
|
|
|
|
|
<!-- LIFE CYCLE MANAGER -->
|
|
<!-- Define concrete implementation of the service -->
|
|
<bean id="lcmServiceImpl"
|
|
class="com.raytheon.uf.edex.registry.ebxml.services.lifecycle.LifecycleManagerImpl">
|
|
<property name="queryManager" ref="queryServiceImpl" />
|
|
<property name="validator" ref="validatorServiceImpl" />
|
|
<property name="registryObjectDao" ref="registryDao"/>
|
|
<property name="auditTrailMgr" ref="auditTrailManager"/>
|
|
<property name="cataloger" ref="catalogerServiceImpl"/>
|
|
</bean>
|
|
|
|
<!-- VALIDATOR -->
|
|
<!-- Define concrete implementation of the service -->
|
|
<bean id="validatorServiceImpl"
|
|
class="com.raytheon.uf.edex.registry.ebxml.services.validator.ValidatorImpl">
|
|
<property name="queryManager" ref="queryServiceImpl" />
|
|
</bean>
|
|
|
|
|
|
<!-- CATALOGER -->
|
|
<!-- Define concrete implementation of the service -->
|
|
<bean id="catalogerServiceImpl"
|
|
class="com.raytheon.uf.edex.registry.ebxml.services.cataloger.CatalogerImpl" >
|
|
<property name="registryObjectDao" ref="registryDao"/>
|
|
</bean>
|
|
|
|
<bean id="edexRegistryManager" class="com.raytheon.uf.edex.registry.ebxml.util.EDEXRegistryManager" />
|
|
|
|
<bean id="registryHandler" class="com.raytheon.uf.common.registry.ebxml.FactoryRegistryHandler">
|
|
<property name="txManager" ref="edexRegistryManager"/>
|
|
<property name="lcmFactory" ref="edexRegistryManager"/>
|
|
<property name="queryFactory" ref="edexRegistryManager"/>
|
|
</bean>
|
|
|
|
<bean name="registryManagerInstanceInitializer" class="com.raytheon.uf.common.registry.RegistryManager">
|
|
<constructor-arg ref="registryHandler" />
|
|
</bean>
|
|
|
|
</beans>
|