awips2/edexOsgi/com.raytheon.uf.edex.parameter/res/spring/parameter-common.xml
Ben Steffensmeier 693090cb36 Issue #1108 initial implementation of mappings
Change-Id: I05a3643e288778dbb97e80f881f2e71f6373067d

Conflicts:
	edexOsgi/com.raytheon.uf.common.dataplugin.grid/META-INF/MANIFEST.MF

Former-commit-id: 8db340a796df354059f3d4142db92dfd5fa527f5
2012-11-08 14:45:36 -06:00

27 lines
No EOL
1.3 KiB
XML

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:amq="http://activemq.apache.org/schema/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
<bean id="getParameterHandler"
class="com.raytheon.uf.edex.parameter.GetParameterHandler" />
<bean id="getParameterHandlerRegistered" factory-bean="handlerRegistry"
factory-method="register" depends-on="parameterRegistered">
<constructor-arg
value="com.raytheon.uf.common.parameter.request.GetParameterRequest" />
<constructor-arg ref="getParameterHandler" />
</bean>
<bean id="parameterProperties" class="com.raytheon.uf.edex.database.DatabasePluginProperties">
<property name="pluginName" value="parameter" />
<property name="pluginFQN" value="com.raytheon.uf.common.parameter" />
<property name="database" value="metadata" />
</bean>
<bean id="parameterRegistered" factory-bean="dbPluginRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.parameter"/>
<constructor-arg ref="parameterProperties"/>
</bean>
</beans>