Amend: updated manifest. Removed static imports. Refactored String constants to Pattern constants in TafConstants. Refactored com.raytheon.edex.plugin.taf to com.raytheon.uf.edex.taf. Renamed com.raytheon.edex.plugin.taf project to com.raytheon.uf.edex.taf. fixed .project. Updated yet more Patterns. Change-Id: Ia5db9d185c6c32e6ce25748ae4b3b6fb389b2acc Former-commit-id: f73ed1c8ee81f3ae1ffdf44ba4726453e7e0b9d2
22 lines
No EOL
954 B
XML
22 lines
No EOL
954 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="tafProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
|
|
<property name="pluginName" value="taf" />
|
|
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.taf" />
|
|
<property name="dao" value="com.raytheon.uf.edex.plugin.taf.dao.TafDao" />
|
|
<property name="record" value="com.raytheon.uf.common.dataplugin.taf.TafRecord" />
|
|
<property name="dependencyFQNs">
|
|
<list>
|
|
<value>com.raytheon.uf.common.pointdata</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean factory-bean="pluginRegistry" factory-method="register" depends-on="pointDataRegistered">
|
|
<constructor-arg value="taf"/>
|
|
<constructor-arg ref="tafProperties"/>
|
|
</bean>
|
|
|
|
</beans> |