Issue #2142 removing more dependencies on edex.common

Change-Id: I6fa6d1957f6aeee3b22f96164c7da4509b06eaaf

Former-commit-id: 231c873711159c9a59f0bc4e25e70cc9c989ecc0
This commit is contained in:
Nate Jensen 2013-08-13 09:09:05 -05:00
parent e6fc534b8c
commit 0c92461c65
36 changed files with 91 additions and 78 deletions

View file

@ -13,7 +13,6 @@ Require-Bundle: com.raytheon.uf.common.status;bundle-version="1.12.1174",
com.raytheon.uf.viz.core;bundle-version="1.12.1174", com.raytheon.uf.viz.core;bundle-version="1.12.1174",
com.raytheon.uf.viz.derivparam;bundle-version="1.12.1174", com.raytheon.uf.viz.derivparam;bundle-version="1.12.1174",
com.raytheon.uf.common.datastorage;bundle-version="1.12.1174", com.raytheon.uf.common.datastorage;bundle-version="1.12.1174",
com.raytheon.edex.meteolib,
org.jep;bundle-version="1.0.0", org.jep;bundle-version="1.0.0",
org.eclipse.ui;bundle-version="3.6.1", org.eclipse.ui;bundle-version="3.6.1",
org.eclipse.core.runtime;bundle-version="3.6.0", org.eclipse.core.runtime;bundle-version="3.6.0",

View file

@ -52,8 +52,7 @@ Export-Package: com.raytheon.viz.gfe,
com.raytheon.viz.gfe.ui, com.raytheon.viz.gfe.ui,
com.raytheon.viz.gfe.ui.runtimeui, com.raytheon.viz.gfe.ui.runtimeui,
com.raytheon.viz.gfe.ui.zoneselector com.raytheon.viz.gfe.ui.zoneselector
Import-Package: com.raytheon.edex.meteoLib, Import-Package: com.raytheon.uf.common.activetable,
com.raytheon.uf.common.activetable,
com.raytheon.uf.common.dissemination, com.raytheon.uf.common.dissemination,
com.raytheon.uf.common.message, com.raytheon.uf.common.message,
com.raytheon.uf.common.python.concurrent, com.raytheon.uf.common.python.concurrent,

View file

@ -14,7 +14,6 @@ Require-Bundle: com.raytheon.edex.common,
Export-Package: com.raytheon.edex.plugin.sfcobs.common Export-Package: com.raytheon.edex.plugin.sfcobs.common
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Import-Package: com.raytheon.uf.common.dataplugin.sfcobs, Import-Package: com.raytheon.uf.common.dataplugin.sfcobs,
com.raytheon.uf.common.dataplugin.sfcobs.dao,
com.raytheon.uf.common.pointdata, com.raytheon.uf.common.pointdata,
com.raytheon.uf.common.pointdata.spatial, com.raytheon.uf.common.pointdata.spatial,
com.raytheon.uf.common.status, com.raytheon.uf.common.status,

View file

@ -9,7 +9,7 @@
<bean id="sfcobsProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties"> <bean id="sfcobsProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="sfcobsPluginName" /> <property name="pluginName" ref="sfcobsPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.sfcobs" /> <property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.sfcobs" />
<property name="dao" value="com.raytheon.uf.common.dataplugin.sfcobs.dao.SfcObsDao" /> <property name="dao" value="com.raytheon.edex.plugin.sfcobs.SfcObsDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.sfcobs.ObsCommon" /> <property name="record" value="com.raytheon.uf.common.dataplugin.sfcobs.ObsCommon" />
</bean> </bean>

View file

@ -6,7 +6,7 @@
<bean id="sfcobsDecoder" class="com.raytheon.edex.plugin.sfcobs.SfcObsDecoder" /> <bean id="sfcobsDecoder" class="com.raytheon.edex.plugin.sfcobs.SfcObsDecoder" />
<bean id="sfcobsSeparator" class="com.raytheon.edex.plugin.sfcobs.SfcObsSeparator" /> <bean id="sfcobsSeparator" class="com.raytheon.edex.plugin.sfcobs.SfcObsSeparator" />
<bean id="sfcobsPointData" class="com.raytheon.uf.common.dataplugin.sfcobs.dao.SfcObsPointDataTransform"> <bean id="sfcobsPointData" class="com.raytheon.edex.plugin.sfcobs.SfcObsPointDataTransform">
<constructor-arg ref="sfcobsPluginName" /> <constructor-arg ref="sfcobsPluginName" />
</bean> </bean>

View file

@ -17,7 +17,7 @@
* See the AWIPS II Master Rights File ("Master Rights File.pdf") for * See the AWIPS II Master Rights File ("Master Rights File.pdf") for
* further licensing information. * further licensing information.
**/ **/
package com.raytheon.uf.common.dataplugin.sfcobs.dao; package com.raytheon.edex.plugin.sfcobs;
import java.util.List; import java.util.List;

View file

@ -17,7 +17,7 @@
* See the AWIPS II Master Rights File ("Master Rights File.pdf") for * See the AWIPS II Master Rights File ("Master Rights File.pdf") for
* further licensing information. * further licensing information.
**/ **/
package com.raytheon.uf.common.dataplugin.sfcobs.dao; package com.raytheon.edex.plugin.sfcobs;
import java.io.File; import java.io.File;
import java.io.InputStream; import java.io.InputStream;

View file

@ -4,14 +4,15 @@ Bundle-Name: Cwat Plug-in
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.cwat Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.cwat
Bundle-Version: 1.12.1174.qualifier Bundle-Version: 1.12.1174.qualifier
Bundle-Vendor: RAYTHEON Bundle-Vendor: RAYTHEON
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core
Require-Bundle: javax.persistence;bundle-version="1.0.0", Require-Bundle: javax.persistence;bundle-version="1.0.0",
com.raytheon.edex.common;bundle-version="1.11.1", com.raytheon.uf.common.serialization,
org.geotools;bundle-version="2.5.2",
com.raytheon.uf.common.monitor;bundle-version="1.11.5", com.raytheon.uf.common.monitor;bundle-version="1.11.5",
com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0" com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0",
com.raytheon.uf.common.geospatial,
com.raytheon.uf.common.dataplugin,
com.raytheon.uf.common.datastorage
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ActivationPolicy: lazy Bundle-ActivationPolicy: lazy
Export-Package: com.raytheon.uf.common.dataplugin.cwat, Export-Package: com.raytheon.uf.common.dataplugin.cwat
com.raytheon.uf.common.dataplugin.cwat.dao
Import-Package: org.apache.commons.logging Import-Package: org.apache.commons.logging

View file

@ -4,13 +4,12 @@ Bundle-Name: FFMP common Plug-in
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.ffmp Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.ffmp
Bundle-Version: 1.12.1174.qualifier Bundle-Version: 1.12.1174.qualifier
Bundle-Vendor: RAYTHEON Bundle-Vendor: RAYTHEON
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: com.raytheon.uf.common.dataplugin.ffmp, Export-Package: com.raytheon.uf.common.dataplugin.ffmp,
com.raytheon.uf.common.dataplugin.ffmp.dao,
com.raytheon.uf.common.dataplugin.ffmp.dataaccess com.raytheon.uf.common.dataplugin.ffmp.dataaccess
Require-Bundle: javax.persistence;bundle-version="1.0.0", Require-Bundle: javax.persistence;bundle-version="1.0.0",
com.raytheon.edex.common;bundle-version="1.11.1", com.raytheon.uf.common.serialization,
com.raytheon.uf.common.monitor;bundle-version="1.11.5", com.raytheon.uf.common.monitor;bundle-version="1.11.5",
com.raytheon.uf.common.hydro;bundle-version="1.11.11", com.raytheon.uf.common.hydro;bundle-version="1.11.11",
com.raytheon.uf.common.mpe;bundle-version="1.11.11", com.raytheon.uf.common.mpe;bundle-version="1.11.11",
@ -24,4 +23,9 @@ Require-Bundle: javax.persistence;bundle-version="1.0.0",
com.raytheon.uf.common.dataaccess;bundle-version="1.0.0", com.raytheon.uf.common.dataaccess;bundle-version="1.0.0",
com.google.guava;bundle-version="1.0.0", com.google.guava;bundle-version="1.0.0",
javax.measure;bundle-version="1.0.0", javax.measure;bundle-version="1.0.0",
com.raytheon.uf.common.message;bundle-version="1.12.1174" com.raytheon.uf.common.message;bundle-version="1.12.1174",
com.raytheon.uf.common.dataquery,
com.raytheon.uf.common.datastorage,
com.raytheon.uf.common.dataplugin
Import-Package: com.raytheon.uf.common.util,
com.raytheon.uf.edex.database.dao

View file

@ -4,12 +4,15 @@ Bundle-Name: Fog common Plug-in
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.fog Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.fog
Bundle-Version: 1.12.1174.qualifier Bundle-Version: 1.12.1174.qualifier
Bundle-Vendor: RAYTHEON Bundle-Vendor: RAYTHEON
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: com.raytheon.uf.common.dataplugin.fog, com.raytheon.uf.common.dataplugin.fog.dao, com.raytheon.uf.common.dataplugin.fog.analysis Export-Package: com.raytheon.uf.common.dataplugin.fog,
com.raytheon.uf.common.dataplugin.fog.analysis
Require-Bundle: javax.persistence;bundle-version="1.0.0", Require-Bundle: javax.persistence;bundle-version="1.0.0",
com.raytheon.edex.common;bundle-version="1.11.1", com.raytheon.uf.common.serialization,
org.geotools;bundle-version="2.5.2",
com.raytheon.uf.common.monitor;bundle-version="1.11.5", com.raytheon.uf.common.monitor;bundle-version="1.11.5",
com.raytheon.uf.common.localization;bundle-version="1.11.13", com.raytheon.uf.common.localization;bundle-version="1.11.13",
com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0" com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0",
com.raytheon.uf.common.dataplugin,
com.raytheon.uf.common.geospatial,
com.raytheon.uf.common.datastorage

View file

@ -4,7 +4,7 @@ Bundle-Name: FSS Obs
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.fssobs Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.fssobs
Bundle-Version: 1.0.0.qualifier Bundle-Version: 1.0.0.qualifier
Bundle-Vendor: RAYTHEON Bundle-Vendor: RAYTHEON
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: com.raytheon.uf.common.dataplugin.fssobs Export-Package: com.raytheon.uf.common.dataplugin.fssobs
Require-Bundle: com.raytheon.uf.common.dataplugin, Require-Bundle: com.raytheon.uf.common.dataplugin,

View file

@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: Obs Bundle-Name: Obs
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.obs Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.obs
Bundle-Version: 1.0.0.qualifier Bundle-Version: 1.0.0.qualifier
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization
Bundle-Vendor: RAYTHEON Bundle-Vendor: RAYTHEON
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: com.raytheon.uf.common.dataplugin.obs.metar, Export-Package: com.raytheon.uf.common.dataplugin.obs.metar,

View file

@ -6,14 +6,16 @@ Bundle-Version: 1.12.1174.qualifier
Bundle-Vendor: RAYTHEON Bundle-Vendor: RAYTHEON
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ActivationPolicy: lazy Bundle-ActivationPolicy: lazy
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core
Require-Bundle: javax.persistence;bundle-version="1.0.0", Require-Bundle: javax.persistence;bundle-version="1.0.0",
com.raytheon.edex.common;bundle-version="1.11.1", com.raytheon.uf.common.serialization,
org.geotools;bundle-version="2.5.2", org.geotools;bundle-version="2.5.2",
com.raytheon.uf.common.monitor;bundle-version="1.11.5", com.raytheon.uf.common.monitor;bundle-version="1.11.5",
com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0", com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0",
javax.measure;bundle-version="1.0.0" javax.measure;bundle-version="1.0.0",
Export-Package: com.raytheon.uf.common.dataplugin.preciprate, com.raytheon.uf.common.dataplugin,
com.raytheon.uf.common.dataplugin.preciprate.dao com.raytheon.uf.common.geospatial,
com.raytheon.uf.common.datastorage
Export-Package: com.raytheon.uf.common.dataplugin.preciprate
Import-Package: com.raytheon.uf.common.status, Import-Package: com.raytheon.uf.common.status,
org.apache.commons.logging org.apache.commons.logging

View file

@ -4,13 +4,14 @@ Bundle-Name: QPF common Plug-in
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.qpf Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.qpf
Bundle-Version: 1.12.1174.qualifier Bundle-Version: 1.12.1174.qualifier
Bundle-Vendor: RAYTHEON Bundle-Vendor: RAYTHEON
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: com.raytheon.uf.common.dataplugin.qpf, Export-Package: com.raytheon.uf.common.dataplugin.qpf
com.raytheon.uf.common.dataplugin.qpf.dao
Require-Bundle: javax.persistence;bundle-version="1.0.0", Require-Bundle: javax.persistence;bundle-version="1.0.0",
com.raytheon.edex.common;bundle-version="1.11.1", com.raytheon.uf.common.serialization,
org.geotools;bundle-version="2.5.2",
com.raytheon.uf.common.monitor;bundle-version="1.11.5", com.raytheon.uf.common.monitor;bundle-version="1.11.5",
com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0" com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0",
com.raytheon.uf.common.geospatial,
com.raytheon.uf.common.dataplugin,
com.raytheon.uf.common.datastorage
Import-Package: org.apache.commons.logging Import-Package: org.apache.commons.logging

View file

@ -4,18 +4,21 @@ Bundle-Name: QPF common Plug-in
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.scan Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.scan
Bundle-Version: 1.12.1174.qualifier Bundle-Version: 1.12.1174.qualifier
Bundle-Vendor: RAYTHEON Bundle-Vendor: RAYTHEON
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: com.raytheon.uf.common.dataplugin.scan, Export-Package: com.raytheon.uf.common.dataplugin.scan,
com.raytheon.uf.common.dataplugin.scan.dao,
com.raytheon.uf.common.dataplugin.scan.data com.raytheon.uf.common.dataplugin.scan.data
Require-Bundle: javax.persistence;bundle-version="1.0.0", Require-Bundle: javax.persistence;bundle-version="1.0.0",
com.raytheon.edex.common;bundle-version="1.11.1", com.raytheon.uf.common.serialization,
com.raytheon.uf.common.monitor;bundle-version="1.11.5", com.raytheon.uf.common.monitor,
com.raytheon.uf.common.dataplugin.binlightning;bundle-version="1.11.26", com.raytheon.uf.common.dataplugin.binlightning,
com.raytheon.uf.common.dataplugin.grid, com.raytheon.uf.common.dataplugin.grid,
com.raytheon.uf.common.sounding;bundle-version="1.12.1112", com.raytheon.uf.common.sounding,
com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0", com.raytheon.uf.common.dataplugin.radar,
com.raytheon.uf.common.status;bundle-version="1.12.1174" com.raytheon.uf.common.status,
Import-Package: org.apache.commons.logging com.raytheon.uf.common.geospatial,
com.raytheon.uf.common.dataplugin,
com.raytheon.uf.common.datastorage
Import-Package: com.raytheon.uf.common.time,
org.apache.commons.logging

View file

@ -3,18 +3,15 @@ Bundle-ManifestVersion: 2
Bundle-Name: Sfcobs Plug-in Bundle-Name: Sfcobs Plug-in
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.sfcobs Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.sfcobs
Bundle-Version: 1.12.1174.qualifier Bundle-Version: 1.12.1174.qualifier
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization
Bundle-Vendor: RAYTHEON Bundle-Vendor: RAYTHEON
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: com.raytheon.edex.common, Require-Bundle: com.raytheon.uf.common.serialization,
org.geotools,
javax.persistence, javax.persistence,
javax.measure, javax.measure,
com.raytheon.uf.common.pointdata;bundle-version="1.11.16", com.raytheon.uf.common.pointdata,
com.raytheon.uf.edex.pointdata;bundle-version="1.11.16" com.raytheon.uf.common.dataplugin,
Export-Package: com.raytheon.uf.common.dataplugin.sfcobs, com.raytheon.uf.common.geospatial
com.raytheon.uf.common.dataplugin.sfcobs.dao Export-Package: com.raytheon.uf.common.dataplugin.sfcobs
Import-Package: com.raytheon.uf.common.status, Import-Package: com.raytheon.uf.common.status,
com.raytheon.uf.edex.decodertools.core,
com.raytheon.uf.edex.decodertools.time,
org.apache.commons.logging org.apache.commons.logging

View file

@ -6,7 +6,6 @@ Bundle-Version: 1.12.1174.qualifier
Bundle-Vendor: RAYTHEON Bundle-Vendor: RAYTHEON
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core
Require-Bundle: com.raytheon.uf.edex.cpgsrv;bundle-version="1.11.7";resolution:=optional, Require-Bundle: com.raytheon.uf.edex.cpgsrv;bundle-version="1.11.7";resolution:=optional,
com.raytheon.edex.common;bundle-version="1.11.7",
com.raytheon.uf.common.monitor;bundle-version="1.11.7", com.raytheon.uf.common.monitor;bundle-version="1.11.7",
org.apache.commons.collections, org.apache.commons.collections,
com.raytheon.uf.common.dataplugin.cwat;bundle-version="1.0.0", com.raytheon.uf.common.dataplugin.cwat;bundle-version="1.0.0",
@ -19,10 +18,17 @@ Require-Bundle: com.raytheon.uf.edex.cpgsrv;bundle-version="1.11.7";resolution:=
com.raytheon.uf.common.sounding;bundle-version="1.12.1174", com.raytheon.uf.common.sounding;bundle-version="1.12.1174",
com.raytheon.uf.common.dataplugin.grid, com.raytheon.uf.common.dataplugin.grid,
com.raytheon.uf.edex.plugin.scan;bundle-version="1.12.1174", com.raytheon.uf.edex.plugin.scan;bundle-version="1.12.1174",
com.raytheon.uf.edex.dat.utils;bundle-version="1.12.1174" com.raytheon.uf.edex.dat.utils;bundle-version="1.12.1174",
com.raytheon.uf.common.geospatial,
com.raytheon.uf.common.serialization,
com.raytheon.uf.common.dataplugin,
com.raytheon.uf.edex.database,
com.raytheon.uf.common.datastorage
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ActivationPolicy: lazy Bundle-ActivationPolicy: lazy
Export-Package: com.raytheon.uf.edex.plugin.cwat, Export-Package: com.raytheon.uf.edex.plugin.cwat,
com.raytheon.uf.edex.plugin.cwat.common com.raytheon.uf.edex.plugin.cwat.common
Import-Package: com.raytheon.uf.edex.plugin.scan.common, Import-Package: com.raytheon.edex.urifilter,
com.raytheon.uf.common.util,
com.raytheon.uf.edex.plugin.scan.common,
org.apache.commons.logging org.apache.commons.logging

View file

@ -10,7 +10,7 @@
<bean id="cwatProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties"> <bean id="cwatProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="cwatPluginName" /> <property name="pluginName" ref="cwatPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.cwat" /> <property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.cwat" />
<property name="dao" value="com.raytheon.uf.common.dataplugin.cwat.dao.CWATDao" /> <property name="dao" value="com.raytheon.uf.edex.plugin.cwat.CWATDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.cwat.CWATRecord" /> <property name="record" value="com.raytheon.uf.common.dataplugin.cwat.CWATRecord" />
<property name="dependencyFQNs"> <property name="dependencyFQNs">
<list> <list>

View file

@ -1,4 +1,4 @@
package com.raytheon.uf.common.dataplugin.cwat.dao; package com.raytheon.uf.edex.plugin.cwat;
/** /**
* This software was developed and / or modified by Raytheon Company, * This software was developed and / or modified by Raytheon Company,
* pursuant to Contract DG133W-05-CQ-1067 with the US Government. * pursuant to Contract DG133W-05-CQ-1067 with the US Government.

View file

@ -27,7 +27,6 @@ import java.util.Set;
import com.raytheon.edex.urifilter.URIFilter; import com.raytheon.edex.urifilter.URIFilter;
import com.raytheon.edex.urifilter.URIGenerateMessage; import com.raytheon.edex.urifilter.URIGenerateMessage;
import com.raytheon.uf.common.dataplugin.cwat.CWATRecord; import com.raytheon.uf.common.dataplugin.cwat.CWATRecord;
import com.raytheon.uf.common.dataplugin.cwat.dao.CWATDao;
import com.raytheon.uf.common.monitor.config.SCANRunSiteConfigurationManager; import com.raytheon.uf.common.monitor.config.SCANRunSiteConfigurationManager;
import com.raytheon.uf.common.monitor.events.MonitorConfigEvent; import com.raytheon.uf.common.monitor.events.MonitorConfigEvent;
import com.raytheon.uf.common.monitor.events.MonitorConfigListener; import com.raytheon.uf.common.monitor.events.MonitorConfigListener;

View file

@ -9,7 +9,7 @@
<bean id="ffmpProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties"> <bean id="ffmpProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="ffmpPluginName" /> <property name="pluginName" ref="ffmpPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.ffmp" /> <property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.ffmp" />
<property name="dao" value="com.raytheon.uf.common.dataplugin.ffmp.dao.FFMPDao" /> <property name="dao" value="com.raytheon.uf.edex.plugin.ffmp.FFMPDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.ffmp.FFMPRecord" /> <property name="record" value="com.raytheon.uf.common.dataplugin.ffmp.FFMPRecord" />
<property name="dependencyFQNs"> <property name="dependencyFQNs">
<list> <list>

View file

@ -1,4 +1,4 @@
package com.raytheon.uf.common.dataplugin.ffmp.dao; package com.raytheon.uf.edex.plugin.ffmp;
/** /**
* This software was developed and / or modified by Raytheon Company, * This software was developed and / or modified by Raytheon Company,

View file

@ -47,7 +47,6 @@ import com.raytheon.uf.common.dataplugin.ffmp.FFMPTemplates;
import com.raytheon.uf.common.dataplugin.ffmp.FFMPTemplates.MODE; import com.raytheon.uf.common.dataplugin.ffmp.FFMPTemplates.MODE;
import com.raytheon.uf.common.dataplugin.ffmp.FFMPUtils; import com.raytheon.uf.common.dataplugin.ffmp.FFMPUtils;
import com.raytheon.uf.common.dataplugin.ffmp.SourceBinList; import com.raytheon.uf.common.dataplugin.ffmp.SourceBinList;
import com.raytheon.uf.common.dataplugin.ffmp.dao.FFMPDao;
import com.raytheon.uf.common.dataplugin.radar.RadarStation; import com.raytheon.uf.common.dataplugin.radar.RadarStation;
import com.raytheon.uf.common.dataplugin.radar.util.RadarsInUseUtil; import com.raytheon.uf.common.dataplugin.radar.util.RadarsInUseUtil;
import com.raytheon.uf.common.datastorage.DataStoreFactory; import com.raytheon.uf.common.datastorage.DataStoreFactory;

View file

@ -10,7 +10,7 @@
<bean id="fogProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties"> <bean id="fogProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="fogPluginName" /> <property name="pluginName" ref="fogPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.fog" /> <property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.fog" />
<property name="dao" value="com.raytheon.uf.common.dataplugin.fog.dao.FogDao" /> <property name="dao" value="com.raytheon.uf.edex.plugin.fog.FogDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.fog.FogRecord" /> <property name="record" value="com.raytheon.uf.common.dataplugin.fog.FogRecord" />
</bean> </bean>

View file

@ -1,4 +1,4 @@
package com.raytheon.uf.common.dataplugin.fog.dao; package com.raytheon.uf.edex.plugin.fog;
/** /**
* This software was developed and / or modified by Raytheon Company, * This software was developed and / or modified by Raytheon Company,
* pursuant to Contract DG133W-05-CQ-1067 with the US Government. * pursuant to Contract DG133W-05-CQ-1067 with the US Government.

View file

@ -23,7 +23,6 @@ import com.raytheon.edex.site.SiteUtil;
import com.raytheon.edex.urifilter.URIFilter; import com.raytheon.edex.urifilter.URIFilter;
import com.raytheon.edex.urifilter.URIGenerateMessage; import com.raytheon.edex.urifilter.URIGenerateMessage;
import com.raytheon.uf.common.dataplugin.fog.FogRecord; import com.raytheon.uf.common.dataplugin.fog.FogRecord;
import com.raytheon.uf.common.dataplugin.fog.dao.FogDao;
import com.raytheon.uf.common.status.IUFStatusHandler; import com.raytheon.uf.common.status.IUFStatusHandler;
import com.raytheon.uf.common.status.UFStatus; import com.raytheon.uf.common.status.UFStatus;
import com.raytheon.uf.common.status.UFStatus.Priority; import com.raytheon.uf.common.status.UFStatus.Priority;

View file

@ -10,7 +10,7 @@
<bean id="preciprateProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties"> <bean id="preciprateProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="precipratePluginName" /> <property name="pluginName" ref="precipratePluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.preciprate" /> <property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.preciprate" />
<property name="dao" value="com.raytheon.uf.common.dataplugin.preciprate.dao.PrecipRateDao" /> <property name="dao" value="com.raytheon.uf.edex.plugin.preciprate.PrecipRateDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.preciprate.PrecipRateRecord" /> <property name="record" value="com.raytheon.uf.common.dataplugin.preciprate.PrecipRateRecord" />
<property name="dependencyFQNs"> <property name="dependencyFQNs">
<list> <list>

View file

@ -17,7 +17,7 @@
* See the AWIPS II Master Rights File ("Master Rights File.pdf") for * See the AWIPS II Master Rights File ("Master Rights File.pdf") for
* further licensing information. * further licensing information.
**/ **/
package com.raytheon.uf.common.dataplugin.preciprate.dao; package com.raytheon.uf.edex.plugin.preciprate;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View file

@ -27,7 +27,6 @@ import java.util.Set;
import com.raytheon.edex.urifilter.URIFilter; import com.raytheon.edex.urifilter.URIFilter;
import com.raytheon.edex.urifilter.URIGenerateMessage; import com.raytheon.edex.urifilter.URIGenerateMessage;
import com.raytheon.uf.common.dataplugin.preciprate.PrecipRateRecord; import com.raytheon.uf.common.dataplugin.preciprate.PrecipRateRecord;
import com.raytheon.uf.common.dataplugin.preciprate.dao.PrecipRateDao;
import com.raytheon.uf.common.dataplugin.radar.util.RadarConstants.DHRValues; import com.raytheon.uf.common.dataplugin.radar.util.RadarConstants.DHRValues;
import com.raytheon.uf.common.monitor.config.SCANRunSiteConfigurationManager; import com.raytheon.uf.common.monitor.config.SCANRunSiteConfigurationManager;
import com.raytheon.uf.common.monitor.events.MonitorConfigEvent; import com.raytheon.uf.common.monitor.events.MonitorConfigEvent;

View file

@ -6,7 +6,6 @@ Bundle-Version: 1.12.1174.qualifier
Bundle-Vendor: RAYTHEON Bundle-Vendor: RAYTHEON
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization, com.raytheon.uf.viz.core
Require-Bundle: com.raytheon.uf.common.monitor;bundle-version="1.0.0", Require-Bundle: com.raytheon.uf.common.monitor;bundle-version="1.0.0",
com.raytheon.edex.common;bundle-version="1.11.1",
com.raytheon.uf.edex.cpgsrv;bundle-version="1.11.1";resolution:=optional, com.raytheon.uf.edex.cpgsrv;bundle-version="1.11.1";resolution:=optional,
com.raytheon.uf.common.dataplugin.qpf, com.raytheon.uf.common.dataplugin.qpf,
com.raytheon.uf.common.dataplugin.binlightning;bundle-version="1.0.0", com.raytheon.uf.common.dataplugin.binlightning;bundle-version="1.0.0",
@ -15,8 +14,14 @@ Require-Bundle: com.raytheon.uf.common.monitor;bundle-version="1.0.0",
com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0", com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0",
com.raytheon.uf.common.dataplugin.scan;bundle-version="1.12.1174", com.raytheon.uf.common.dataplugin.scan;bundle-version="1.12.1174",
com.raytheon.uf.edex.dat.utils;bundle-version="1.12.1174", com.raytheon.uf.edex.dat.utils;bundle-version="1.12.1174",
com.raytheon.uf.edex.plugin.scan;bundle-version="1.12.1174" com.raytheon.uf.edex.plugin.scan;bundle-version="1.12.1174",
Import-Package: com.raytheon.uf.common.dataplugin.grid, com.raytheon.uf.common.geospatial,
com.raytheon.uf.common.dataplugin,
com.raytheon.uf.common.serialization,
com.raytheon.uf.common.datastorage,
com.raytheon.uf.edex.database
Import-Package: com.raytheon.edex.urifilter,
com.raytheon.uf.common.dataplugin.grid,
com.raytheon.uf.edex.plugin.scan.common, com.raytheon.uf.edex.plugin.scan.common,
org.apache.commons.logging org.apache.commons.logging
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-RequiredExecutionEnvironment: JavaSE-1.6

View file

@ -10,7 +10,7 @@
<bean id="qpfProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties"> <bean id="qpfProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="qpfPluginName" /> <property name="pluginName" ref="qpfPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.qpf" /> <property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.qpf" />
<property name="dao" value="com.raytheon.uf.common.dataplugin.qpf.dao.QPFDao" /> <property name="dao" value="com.raytheon.uf.edex.plugin.qpf.QPFDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.qpf.QPFRecord" /> <property name="record" value="com.raytheon.uf.common.dataplugin.qpf.QPFRecord" />
<property name="dependencyFQNs"> <property name="dependencyFQNs">
<list> <list>

View file

@ -18,7 +18,7 @@
* further licensing information. * further licensing information.
**/ **/
package com.raytheon.uf.common.dataplugin.qpf.dao; package com.raytheon.uf.edex.plugin.qpf;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View file

@ -28,7 +28,6 @@ import com.raytheon.edex.urifilter.URIFilter;
import com.raytheon.edex.urifilter.URIGenerateMessage; import com.raytheon.edex.urifilter.URIGenerateMessage;
import com.raytheon.uf.common.dataplugin.qpf.QPFRecord; import com.raytheon.uf.common.dataplugin.qpf.QPFRecord;
import com.raytheon.uf.common.dataplugin.qpf.QPFRecord.DATA_TYPE; import com.raytheon.uf.common.dataplugin.qpf.QPFRecord.DATA_TYPE;
import com.raytheon.uf.common.dataplugin.qpf.dao.QPFDao;
import com.raytheon.uf.common.monitor.config.SCANRunSiteConfigurationManager; import com.raytheon.uf.common.monitor.config.SCANRunSiteConfigurationManager;
import com.raytheon.uf.common.monitor.events.MonitorConfigEvent; import com.raytheon.uf.common.monitor.events.MonitorConfigEvent;
import com.raytheon.uf.common.monitor.events.MonitorConfigListener; import com.raytheon.uf.common.monitor.events.MonitorConfigListener;

View file

@ -10,7 +10,7 @@
<property name="pluginName" ref="scanPluginName" /> <property name="pluginName" ref="scanPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.scan" /> <property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.scan" />
<property name="dao" <property name="dao"
value="com.raytheon.uf.common.dataplugin.scan.dao.ScanDao" /> value="com.raytheon.uf.edex.plugin.scan.ScanDao" />
<property name="record" <property name="record"
value="com.raytheon.uf.common.dataplugin.scan.ScanRecord" /> value="com.raytheon.uf.common.dataplugin.scan.ScanRecord" />
<property name="compression" value="LZF"/> <property name="compression" value="LZF"/>

View file

@ -18,7 +18,7 @@
* further licensing information. * further licensing information.
**/ **/
package com.raytheon.uf.common.dataplugin.scan.dao; package com.raytheon.uf.edex.plugin.scan;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View file

@ -30,7 +30,6 @@ import com.raytheon.edex.urifilter.URIFilter;
import com.raytheon.edex.urifilter.URIGenerateMessage; import com.raytheon.edex.urifilter.URIGenerateMessage;
import com.raytheon.uf.common.dataplugin.message.DataURINotificationMessage; import com.raytheon.uf.common.dataplugin.message.DataURINotificationMessage;
import com.raytheon.uf.common.dataplugin.scan.ScanRecord; import com.raytheon.uf.common.dataplugin.scan.ScanRecord;
import com.raytheon.uf.common.dataplugin.scan.dao.ScanDao;
import com.raytheon.uf.common.dataplugin.scan.data.ScanTableData; import com.raytheon.uf.common.dataplugin.scan.data.ScanTableData;
import com.raytheon.uf.common.monitor.config.SCANRunSiteConfigurationManager; import com.raytheon.uf.common.monitor.config.SCANRunSiteConfigurationManager;
import com.raytheon.uf.common.monitor.events.MonitorConfigEvent; import com.raytheon.uf.common.monitor.events.MonitorConfigEvent;