Issue #2101 Subscription retrieval for WFS (MADIS) follow on of #1763, #2062 for 13.6.1

Change-Id: I4072d87c50e42b30f4e54dedbe25d4335a27874a

Former-commit-id: a4bf580fef [formerly d1cd0938a6] [formerly e48e4eeb69] [formerly a4bf580fef [formerly d1cd0938a6] [formerly e48e4eeb69] [formerly 752f7106bc [formerly e48e4eeb69 [formerly e4a345b9c4ce48210297ab5af6f25031268eb18e]]]]
Former-commit-id: 752f7106bc
Former-commit-id: 2aa7d84313 [formerly 456db39e63] [formerly 79c6ea13ea470ea7f499f58fd8dcfb39b4c0650f [formerly 608c43b64a]]
Former-commit-id: 95b15dab75d50950a9a2ef87f7655ab066dfcc2d [formerly 62a1b06b68]
Former-commit-id: 8babe7152c
This commit is contained in:
Dave Hladky 2013-06-03 16:09:24 -05:00
parent 0cfc77b577
commit cca8a29e2d
7 changed files with 16 additions and 20 deletions

View file

@ -233,7 +233,6 @@
<include>pointdata-common.xml</include>
<include>obs-common.xml</include>
<include>madis-common.xml</include>
<include>madis-metadata.xml</include>
<include>level-common.xml</include>
<include>persist-ingest.xml</include>
<include>management-common.xml</include>

View file

@ -19,5 +19,10 @@ Require-Bundle: com.raytheon.uf.common.datadelivery.retrieval;bundle-version="1.
com.raytheon.uf.common.pointdata;bundle-version="1.12.1174",
com.raytheon.uf.common.geospatial;bundle-version="1.12.1174",
com.raytheon.uf.common.event;bundle-version="1.0.0",
com.raytheon.uf.edex.ogc.common;bundle-version="1.0.0"
Export-Package: com.raytheon.uf.edex.datadelivery.retrieval.wfs
com.raytheon.uf.edex.ogc.common;bundle-version="1.0.0",
com.raytheon.uf.common.dataplugin.madis;bundle-version="1.0.0",
com.raytheon.uf.edex.plugin.madis.ogc;bundle-version="1.0.0",
com.raytheon.uf.edex.plugin.madis;bundle-version="1.0.0",
com.raytheon.uf.edex.wfs;bundle-version="1.0.0"
Export-Package: com.raytheon.uf.edex.datadelivery.retrieval.wfs,
com.raytheon.uf.edex.datadelivery.retrieval.wfs.metadata

View file

@ -7,4 +7,9 @@
<constructor-arg value="com.raytheon.uf.edex.datadelivery.retrieval.wfs.WfsServiceFactory" type="java.lang.Class" />
</bean>
<bean factory-bean="metadataAdapterRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.madis.MadisRecord" />
<constructor-arg value="com.raytheon.uf.edex.datadelivery.retrieval.wfs.metadata.MadisMetadataAdapter" type="java.lang.Class" />
</bean>
</beans>

View file

@ -1,4 +1,4 @@
package com.raytheon.uf.edex.plugin.madis.ogc.metadata;
package com.raytheon.uf.edex.datadelivery.retrieval.wfs.metadata;
import javax.xml.bind.JAXBException;

View file

@ -25,10 +25,6 @@ Require-Bundle: com.raytheon.uf.edex.ogc.common;bundle-version="1.0.0",
com.raytheon.uf.common.geospatial;bundle-version="1.12.1174",
com.raytheon.uf.common.pointdata;bundle-version="1.12.1174",
com.raytheon.uf.edex.wms;bundle-version="1.0.0",
com.raytheon.uf.common.time;bundle-version="1.12.1174",
com.raytheon.uf.edex.datadelivery.retrieval.wfs;bundle-version="1.0.0",
com.raytheon.uf.edex.datadelivery.retrieval;bundle-version="1.0.0",
com.raytheon.uf.common.datadelivery.retrieval;bundle-version="1.0.0"
com.raytheon.uf.common.time;bundle-version="1.12.1174"
Export-Package: com.raytheon.uf.edex.plugin.madis.ogc,
com.raytheon.uf.edex.plugin.madis.ogc.feature,
com.raytheon.uf.edex.plugin.madis.ogc.metadata
com.raytheon.uf.edex.plugin.madis.ogc.feature

View file

@ -1,9 +0,0 @@
<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 factory-bean="metadataAdapterRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.madis.MadisRecord" />
<constructor-arg value="com.raytheon.uf.edex.plugin.madis.ogc.metadata.MadisMetadataAdapter" type="java.lang.Class" />
</bean>
</beans>

View file

@ -137,7 +137,7 @@ public class HttpProxiedClientValidCredentialsTest {
provider.setProviderType(types);
String url = HttpProxyTestConstants.HTTPS_URI
+ "?request=getfeature&typename=http://madis.edex.uf.raytheon.com:madis&srsName=crs:84&bbox=-96.0,41.0,-94.0,43.0&maxFeatures=1000";
+ "?request=getfeature&typename=http://madis.edex.uf.raytheon.com:madis&srsName=crs:84&bbox=-96.0,41.0,-94.0,43.0&maxFeatures=2000";
Connection conn1 = provider.getConnection();
HttpGet get = new HttpGet();
URI uri = new URI(url);