<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://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd   
  http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
	<bean id="radarPathProvider"
		class="com.raytheon.uf.common.dataplugin.radar.RadarPathProvider" />

	<bean id="radarProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
		<property name="pluginName" value="radar" />
		<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.radar" />
		<property name="dao" value="com.raytheon.edex.plugin.radar.dao.RadarDao" />
		<property name="record" value="com.raytheon.uf.common.dataplugin.radar.RadarRecord" />
		<property name="pathProvider">
			<ref bean="radarPathProvider" />
		</property>
        <property name="compression" value="LZF"/>
	</bean>

	<bean id="radarRegistered" factory-bean="pluginRegistry"
		factory-method="register" depends-on="textRegistered">
		<constructor-arg value="radar" />
		<constructor-arg ref="radarProperties" />
	</bean>
</beans>