Details
Description
in FeatureTypeListResource catalog.getDataStoreByName use only DataStore Name
if ( ds != null ) { DataStoreInfo dataStore = catalog.getDataStoreByName( ds ); return catalog.getFeatureTypesByDataStore(dataStore); }
Right is:
if ( ds != null ) { DataStoreInfo dataStore = catalog.getDataStoreByName( ws, ds ); return catalog.getFeatureTypesByDataStore(dataStore); }
Assigning to the rest maintainer. But yeah, the correction looks right