2013-01-07 12:16:01 -06:00
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2013-04-16 11:30:06 -05:00
|
|
|
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
|
2013-03-18 11:49:17 -05:00
|
|
|
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">
|
2013-01-07 12:16:01 -06:00
|
|
|
|
2013-04-16 11:30:06 -05:00
|
|
|
<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>
|
2013-01-07 12:16:01 -06:00
|
|
|
|
|
|
|
</beans>
|