2013-01-07 12:16:01 -06:00
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2013-04-22 09:48:58 -05:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
|
2013-05-29 16:19:28 -05:00
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
|
2013-03-18 11:49:17 -05:00
|
|
|
http://www.springframework.org/schema/tx
|
|
|
|
http://www.springframework.org/schema/tx/spring-tx.xsd">
|
2013-01-07 12:16:01 -06:00
|
|
|
|
2013-04-22 09:48:58 -05:00
|
|
|
<bean id="registrySubscriptionManagerInvoker"
|
|
|
|
class="com.raytheon.uf.edex.registry.ebxml.dao.EsbRouteRegistrySubscriptionManagerInvocation" />
|
2013-04-16 11:30:06 -05:00
|
|
|
|
2013-04-22 09:48:58 -05:00
|
|
|
<bean id="pwCallback"
|
|
|
|
class="com.raytheon.uf.edex.registry.ebxml.acp.PasswordCallback" />
|
2013-04-16 11:30:06 -05:00
|
|
|
|
2013-04-22 09:48:58 -05:00
|
|
|
<bean id="WsSecurity" class="org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor">
|
|
|
|
<constructor-arg>
|
|
|
|
<map>
|
|
|
|
<entry key="action" value="UsernameToken" />
|
|
|
|
<entry key="passwordType" value="PasswordText" />
|
|
|
|
<entry key="passwordCallbackRef">
|
|
|
|
<ref bean="pwCallback" />
|
|
|
|
</entry>
|
|
|
|
</map>
|
|
|
|
</constructor-arg>
|
|
|
|
</bean>
|
2013-01-07 12:16:01 -06:00
|
|
|
|
2013-04-24 13:57:27 -05:00
|
|
|
<bean id="registryObjectReferenceValidator" class="com.raytheon.uf.edex.registry.ebxml.services.validator.LocalServerRegistryObjectReferenceValidator">
|
|
|
|
<property name="registryObjectDao" ref="registryObjectDao" />
|
|
|
|
</bean>
|
|
|
|
|
2013-01-07 12:16:01 -06:00
|
|
|
</beans>
|