Skip to content

Commit

Permalink
Shorten properties file name so table name inside Oracle 30 character…
Browse files Browse the repository at this point in the history
… limit [GEOS-7062, GEOT-5469]
  • Loading branch information
bencaradocdavies committed Aug 3, 2016
1 parent cbcaee1 commit cb07d63
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Expand Up @@ -117,7 +117,7 @@ public void testStoredQuery() throws Exception {
* Test encoding of a multivalued mapping with an xlink:href ClientProperty. * Test encoding of a multivalued mapping with an xlink:href ClientProperty.
*/ */
@Test @Test
public void testMultivaluedXlinkHrefClientProperty() { public void testMultivaluedXlinkHref() {
Document doc = getAsDOM( Document doc = getAsDOM(
"wfs?service=WFS&version=2.0.0&request=GetFeature&typenames=gsml:GeologicUnit"); "wfs?service=WFS&version=2.0.0&request=GetFeature&typenames=gsml:GeologicUnit");
LOGGER.info("WFS GetFeature, typename=gsml:GeologicUnit response:\n" + prettyString(doc)); LOGGER.info("WFS GetFeature, typename=gsml:GeologicUnit response:\n" + prettyString(doc));
Expand Down
Expand Up @@ -10,16 +10,16 @@
* *
* @author Ben Caradoc-Davies (Transient Software Limited) * @author Ben Caradoc-Davies (Transient Software Limited)
*/ */
public class MultivaluedXlinkHrefClientPropertyMockData extends AbstractAppSchemaMockData { public class MultivaluedXlinkHrefMockData extends AbstractAppSchemaMockData {


public MultivaluedXlinkHrefClientPropertyMockData() { public MultivaluedXlinkHrefMockData() {
super(GML32_NAMESPACES); super(GML32_NAMESPACES);
} }


@Override @Override
public void addContent() { public void addContent() {
addFeatureType(GSML_PREFIX, "GeologicUnit", "MultivaluedXlinkHrefClientProperty.xml", addFeatureType(GSML_PREFIX, "GeologicUnit", "MultivaluedXlinkHref.xml",
"MultivaluedXlinkHrefClientProperty.properties"); "MultivaluedXlinkHref.properties");
} }


} }
Expand Up @@ -13,11 +13,11 @@
* *
* @author Ben Caradoc-Davies (Transient Software Limited) * @author Ben Caradoc-Davies (Transient Software Limited)
*/ */
public class MultivaluedXlinkHrefClientPropertyTest extends AbstractAppSchemaTestSupport { public class MultivaluedXlinkHrefTest extends AbstractAppSchemaTestSupport {


@Override @Override
protected MultivaluedXlinkHrefClientPropertyMockData createTestData() { protected MultivaluedXlinkHrefMockData createTestData() {
return new MultivaluedXlinkHrefClientPropertyMockData(); return new MultivaluedXlinkHrefMockData();
} }


/** /**
Expand Down
Expand Up @@ -31,7 +31,7 @@
<typeMappings> <typeMappings>
<FeatureTypeMapping> <FeatureTypeMapping>
<sourceDataStore>datastore</sourceDataStore> <sourceDataStore>datastore</sourceDataStore>
<sourceType>MultivaluedXlinkHrefClientProperty</sourceType> <sourceType>MultivaluedXlinkHref</sourceType>
<targetElement>gsml:GeologicUnit</targetElement> <targetElement>gsml:GeologicUnit</targetElement>
<attributeMappings> <attributeMappings>
<AttributeMapping> <AttributeMapping>
Expand Down

0 comments on commit cb07d63

Please sign in to comment.