* move derived parameter definitions to base localization level * remove java 7 exception constructor from inventory plugin * move python function adapter to derivparam.python plugin Former-commit-id: c54110914a3a64a2ea7c22093327c9e0d84689b2
14 lines
No EOL
615 B
XML
14 lines
No EOL
615 B
XML
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
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-3.1.xsd">
|
|
|
|
<bean id="pythonDerParFunctionAdapter"
|
|
class="com.raytheon.uf.common.derivparam.python.DerivParamPythonFunctionAdapter" />
|
|
|
|
<bean id="registeredPythonDerParFunctionAdapter"
|
|
class="com.raytheon.uf.common.derivparam.library.DerivedParameterGenerator"
|
|
factory-method="addFunctionAdapter">
|
|
<constructor-arg ref="pythonDerParFunctionAdapter" />
|
|
</bean>
|
|
|
|
</beans> |