moved VistALink configuration into its own file

This commit is contained in:
sblaz 2011-09-19 01:15:51 +00:00
parent 33133286df
commit adbffb9a7c
3 changed files with 18 additions and 10 deletions

View File

@ -64,14 +64,4 @@
class="gov.va.med.edp.vistalink.locator.VistaLinkConnectorConfigConnectionFactoryLocator">
<property name="connectors" ref="vistaAccounts"/>
</bean>
<util:set id="vistaAccounts">
<bean class="gov.va.med.edp.vistalink.locator.VistaLinkConnectorConfig">
<property name="host" value="foo"/>
<property name="name" value="FOO"/>
<property name="primaryStation" value="500"/>
<property name="accessCode" value="foo"/>
<property name="verifyCode" value="bar"/>
</bean>
</util:set>
</beans>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd">
<util:set id="vistaAccounts">
<bean class="gov.va.med.edp.vistalink.locator.VistaLinkConnectorConfig">
<property name="host" value="foo"/>
<property name="name" value="FOO"/>
<property name="primaryStation" value="500"/>
<property name="accessCode" value="foo"/>
<property name="verifyCode" value="bar"/>
</bean>
</util:set>
</beans>

View File

@ -5,4 +5,5 @@
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd">
<import resource="data-access-config.xml"/>
<import resource="security-config.xml"/>
<import resource="vistalink-config.xml"/>
</beans>