Omaha #2670 add support for data access framework to airep plugin.

Former-commit-id: 46c69e7d74 [formerly 80fa485848 [formerly a58bc7a8d4] [formerly 46c69e7d74 [formerly 56c528cf5727954431298c955a506d54cd5921ad]]]
Former-commit-id: 80fa485848 [formerly a58bc7a8d4]
Former-commit-id: 80fa485848
Former-commit-id: 3685cc7cbf
This commit is contained in:
Ben Steffensmeier 2014-05-27 11:44:46 -05:00
parent 4151401e1a
commit d873fc3c9b
4 changed files with 19 additions and 2 deletions

View file

@ -8,7 +8,8 @@ Require-Bundle: com.raytheon.uf.common.status;bundle-version="1.12.1174",
net.sf.cglib;bundle-version="2.1.3",
com.raytheon.uf.edex.core;bundle-version="1.12.1174",
javax.measure,
com.raytheon.edex.common;bundle-version="1.12.1174"
org.hibernate;bundle-version="3.5.6",
com.raytheon.uf.common.dataaccess;bundle-version="1.14.0"
Import-Package: com.raytheon.edex.db.dao,
com.raytheon.uf.common.dataplugin,
com.raytheon.uf.common.dataplugin.annotations,

View file

@ -1,4 +1,5 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.
.,\
res/

View file

@ -0,0 +1,12 @@
<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="airepDataAccessFactory" class="com.raytheon.uf.common.pointdata.dataaccess.PointDataAccessFactory" />
<bean factory-bean="dataAccessRegistry" factory-method="register">
<constructor-arg value="airep"/>
<constructor-arg ref="airepDataAccessFactory"/>
</bean>
</beans>

View file

@ -4,6 +4,7 @@
* Date Ticket# Engineer Description
* __________ _______ __________ __________________________
* 06/28/2011 F. J. Yen Initial creation for OB11.5
* 05/27/2014 2670 bsteffen Add dataTime fields.
-->
<pointDataDbDescription>
<parameter name="latitude" queryName="location.latitude" type="FLOAT" unit="°" />
@ -11,4 +12,6 @@
<parameter name="stationId" queryName="location.stationId" type="STRING" />
<parameter name="reportType" queryName="reportType" type="STRING" />
<parameter name="dataURI" queryName="dataURI" type="STRING" />
<parameter name="refTime" queryName="dataTime.refTime" numDims="1" type="LONG" unit="ms"/>
<parameter name="forecastHr" queryName="dataTime.fcstTime" numDims="1" type="INT" unit="h" dbunit="s"/>
</pointDataDbDescription>