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

Extended the Artifact-Interface-Method setup to be able to put the XML-Document which can contain further Data to the Artifact-Implementation. artifacts/trunk@649 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 01 Feb 2010 13:54:05 +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