view artifact-database/src/main/java/de/intevation/artifactdatabase/rest/OutRepresentation.java @ 73:d1b8c91b4506

Added url '/service/{service}' to REST server to offer the actual service over HTTP. artifacts/trunk@601 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 22 Jan 2010 11:56:28 +0000
parents c2d53bd30ab8
children 48d1a9a082c2
line wrap: on
line source
package de.intevation.artifactdatabase.rest;

import org.restlet.representation.OutputRepresentation;

import org.restlet.data.MediaType;

import de.intevation.artifacts.ArtifactDatabase.DeferredOutput;

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

/**
 * @author Sascha L. Teichmann (sascha.teichmann@intevation)
 */
public class OutRepresentation
extends      OutputRepresentation
{
    protected DeferredOutput out;

    public OutRepresentation(MediaType mediaType, DeferredOutput out) {
        super(mediaType);
        this.out = out;
    }

    public void write(OutputStream output) throws IOException {
        out.write(output);
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8:

http://dive4elements.wald.intevation.org