Hi, we are writing geoserver extensions and trying to hide the concept of a 
namespace from client code.

The code that emits the coverage id in DescribeCoverage responses for WCS 1.0 
and 2.0 was extensible, and we were able to implement the behavior we need.

However, for WCS 1.1, the fact that a namespace is prepended to a coverage id 
with a colon delimeter is hardcoded here:
project: org.geoserver.gs-wcs1_1
org.geoserver.wcs.response.DescribeCoverageTransformer.java

        protected void handleCoverageDescription(CoverageInfo ci) throws 
Exception {
            start("wcs:CoverageDescription");
            element("ows:Title", ci.getTitle());
            element("ows:Abstract", ci.getDescription());
            handleKeywords(ci.getKeywords());
            element("wcs:Identifier", ci.getStore().getWorkspace().getName() + 
":" + ci.getName());
            handleMetadataLinks(ci.getMetadataLinks(), "simple");
            handleDomain(ci);
            handleRange(ci);
            handleSupportedCRSs(ci);
            handleSupportedFormats(ci);
            end("wcs:CoverageDescription");
        }


Could this line be changed to delegate returning the prefixed coverage id to 
the CoverageInfo object? i.e.

            element("wcs:Identifier", ci.prefixedName());

That way I could implement the behavior I need in my own CoverageInfo object.

Thanks,
Scott

________________________________

This e-mail and any files transmitted with it may be proprietary and are 
intended solely for the use of the individual or entity to whom they are 
addressed. If you have received this e-mail in error please notify the sender. 
Please note that any views or opinions presented in this e-mail are solely 
those of the author and do not necessarily represent those of Exelis Inc. The 
recipient should check this e-mail and any attachments for the presence of 
viruses. Exelis Inc. accepts no liability for any damage caused by any virus 
transmitted by this e-mail.
------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk
_______________________________________________
Geoserver-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-devel

Reply via email to