awips2/edexOsgi/com.raytheon.uf.common.time/res/spring/time-common.xml
Max Schenkelberg 00822a4f39 Issue #1308 removed activemq references in spring file, made gfe common xml explicitly depend on time xml
Change-Id: I784b077d1ab2d929ddad1cb69fccc4a8c5e0729e

Former-commit-id: e696b81840b6c1f0a0df8a9f20b859f23bc5a3e7
2012-11-12 16:46:21 -06:00

21 lines
No EOL
1.4 KiB
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-2.0.xsd">
<bean id="dataTimeConverterRegistered" class="com.raytheon.uf.common.util.ConvertUtil" factory-method="registerConverter">
<constructor-arg><bean class="com.raytheon.uf.common.time.util.DataTimeConverter"/></constructor-arg>
<constructor-arg><value>com.raytheon.uf.common.time.DataTime</value></constructor-arg>
</bean>
<bean id="calendarConverterRegistered" class="com.raytheon.uf.common.util.ConvertUtil" factory-method="registerConverter">
<constructor-arg><bean class="com.raytheon.uf.common.time.util.CalendarConverter"/></constructor-arg>
<constructor-arg><value>java.util.Calendar</value></constructor-arg>
</bean>
<bean id="dateConverterRegistered" class="com.raytheon.uf.common.util.ConvertUtil" factory-method="registerConverter">
<constructor-arg><bean class="com.raytheon.uf.common.time.util.DateConverter"/></constructor-arg>
<constructor-arg><value>java.util.Date</value></constructor-arg>
</bean>
<bean id="commonTimeRegistered" class="java.lang.String" depends-on="dataTimeConverterRegistered, calendarConverterRegistered, dateConverterRegistered"/>
</beans>