Change-Id: Ieb1544cb52cf108836b157e3d800c470fa5cf3e1 Former-commit-id:67e49201d6
[formerly255aea053b
] [formerly58b6899672
[formerly c4344f5402fe33e7e47515adc3b54913f9c13617]] Former-commit-id:58b6899672
Former-commit-id:cb899b3fa0
50 lines
2.3 KiB
XML
50 lines
2.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="ServiceUrlFactory"
|
|
class="com.raytheon.uf.edex.registry.ebxml.util.ServiceUrlFactory" />
|
|
<bean id="DbInit" class="com.raytheon.uf.edex.registry.ebxml.dao.DbInit">
|
|
<property name="dbValidationStrategy" ref="ebxmlDbValidationStrategy" />
|
|
<property name="lcm" ref="lcmServiceImpl" />
|
|
<property name="sessionFactory" ref="metadataSessionFactory" />
|
|
<property name="xacmlAdmin" ref="XACMLPolicyAdministrator" />
|
|
</bean>
|
|
|
|
<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="XACMLPolicyEnforcementPoint"
|
|
class="com.raytheon.uf.edex.registry.acp.xacml.XACMLPolicyEnforcementPoint">
|
|
<property name="xacmlContextHandler" ref="XACMLContextHandler" />
|
|
</bean>
|
|
|
|
<bean id="XACMLContextHandler"
|
|
class="com.raytheon.uf.edex.registry.acp.xacml.XACMLContextHandler">
|
|
<property name="queryManager" ref="queryServiceImpl" />
|
|
<property name="registryObjectDao" ref="registryObjectDao" />
|
|
<property name="xacmlPolicyAdmin" ref="XACMLPolicyAdministrator" />
|
|
</bean>
|
|
|
|
<bean id="XACMLPolicyAdministrator"
|
|
class="com.raytheon.uf.edex.registry.acp.xacml.XACMLPolicyAdministrator">
|
|
<property name="extrinsicObjectDao" ref="extrinsicObjectDao" />
|
|
<property name="lcm" ref="lcmServiceImpl" />
|
|
</bean>
|
|
|
|
</beans>
|