in FeatureTypeListResource catalog.getDataStoreByName use only DataStore Name
-----------------------------------------------------------------------------

                 Key: GEOS-4772
                 URL: https://jira.codehaus.org/browse/GEOS-4772
             Project: GeoServer
          Issue Type: Bug
          Components: REST
    Affects Versions: 2.1.1
            Reporter: German Osin
            Assignee: Andrea Aime


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);    
        }

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security
threats, fraudulent activity, and more. Splunk takes this data and makes
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2dcopy2
_______________________________________________
Geoserver-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-devel

Reply via email to