Package org.geoserver.wcs2_0.response

Source Code of org.geoserver.wcs2_0.response.WCS20DescribeCoverageResponse

/* (c) 2014 Open Source Geospatial Foundation - all rights reserved
* (c) 2001 - 2013 OpenPlans
* This code is licensed under the GPL 2.0 license, available at the root
* application directory.
*/
package org.geoserver.wcs2_0.response;

import java.io.IOException;
import java.io.OutputStream;

import javax.xml.transform.TransformerException;

import org.geoserver.ows.Response;
import org.geoserver.platform.Operation;
import org.geotools.xml.transform.TransformerBase;

/**
* Runs the transformer and outputs the describe coverage response.

*/
public class WCS20DescribeCoverageResponse extends Response {
    /** MIME_TYPE */
    private static final String MIME_TYPE = "application/xml";

    public WCS20DescribeCoverageResponse() {
        super(WCS20DescribeCoverageTransformer.class);
    }

    public String getMimeType(Object value, Operation operation) {
        return MIME_TYPE;
    }

    public void write(Object value, OutputStream output, Operation operation)
        throws IOException {
        TransformerBase tx = (TransformerBase) value;

        try {
            tx.transform(operation.getParameters()[0], output);
        } catch (TransformerException e) {
            throw new IOException(e);
        }
    }
}
TOP

Related Classes of org.geoserver.wcs2_0.response.WCS20DescribeCoverageResponse

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.