Omaha #2670 add support for data access framework to airep plugin.
Former-commit-id:80fa485848
[formerlya58bc7a8d4
] [formerly80fa485848
[formerlya58bc7a8d4
] [formerly46c69e7d74
[formerly 56c528cf5727954431298c955a506d54cd5921ad]]] Former-commit-id:46c69e7d74
Former-commit-id:a29c82ffea
[formerly101b7c3516
] Former-commit-id:cb589b7397
This commit is contained in:
parent
e8a843b719
commit
baa31bc6fa
4 changed files with 19 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.
|
||||
.,\
|
||||
res/
|
||||
|
|
|
@ -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>
|
|
@ -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>
|
Loading…
Add table
Reference in a new issue