* Removing viz dependencys from derivparam ** Move LevelUtilities to common ** Use spring instead of eclipse plugin extentions to configure derived parameter function types ** Use RequestRouter instead of ThriftClient so we can use IServerRequest objects in both CAVE and EDEX The next stage will be to clean up exceptions in derived parameters to stop using VizException and VizCommunicationException. Former-commit-id: 604ae156f8b235e2e1736863b419547289403240
14 lines
No EOL
609 B
XML
14 lines
No EOL
609 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.viz.derivparam.python.DerivParamPythonFunctionAdapter" />
|
|
|
|
<bean id="registeredPythonDerParFunctionAdapter"
|
|
class="com.raytheon.uf.viz.derivparam.library.DerivedParameterGenerator"
|
|
factory-method="addFunctionAdapter">
|
|
<constructor-arg ref="pythonDerParFunctionAdapter" />
|
|
</bean>
|
|
|
|
</beans> |