Change-Id: I4b7ca6e23993dbecad284e8dc434918bc5f55678 Former-commit-id:8ed8cdd9b7
[formerly83a015b556
] [formerly87829b4cf1
[formerly 4ed0e3f954e5abf420d9e9c2dc4d197c1613f046]] Former-commit-id:87829b4cf1
Former-commit-id:b6c7f2d6c6
30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
|
|
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
|
|
http://www.springframework.org/schema/tx
|
|
http://www.springframework.org/schema/tx/spring-tx.xsd">
|
|
|
|
<bean id="registrySubscriptionManagerInvoker"
|
|
class="com.raytheon.uf.edex.registry.ebxml.dao.EsbRouteRegistrySubscriptionManagerInvocation" />
|
|
|
|
<bean id="pwCallback"
|
|
class="com.raytheon.uf.edex.registry.ebxml.acp.PasswordCallback" />
|
|
|
|
<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>
|
|
|
|
<bean id="registryObjectReferenceValidator" class="com.raytheon.uf.edex.registry.ebxml.services.validator.LocalServerRegistryObjectReferenceValidator">
|
|
<property name="registryObjectDao" ref="registryObjectDao" />
|
|
</bean>
|
|
|
|
</beans>
|