moved VistALink configuration into its own file
This commit is contained in:
parent
33133286df
commit
adbffb9a7c
|
@ -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>
|
|
@ -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>
|
|
@ -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>
|
Loading…
Reference in New Issue