Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/rest/OutRepresentation.java @ 64:8b72676698b5
Create a namespace aware document out of the request. We consider namespaces now. Adapted xpath to find action.
artifacts/trunk@523 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Sat, 09 Jan 2010 16:59:00 +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: