com.clouway.friendlyserve.RsWithBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fserve Show documentation
Show all versions of fserve Show documentation
Friendly Serving HTTP Library.
package com.clouway.friendlyserve;
import java.io.IOException;
import java.io.InputStream;
import java.util.Map;
/**
* @author Miroslav Genov ([email protected])
*/
public class RsWithBody extends RsWrap {
public RsWithBody(InputStream in) {
this(new RsEmpty(), in);
}
public RsWithBody(final Response response, final InputStream body) {
super(new Response() {
@Override
public Status status() {
return response.status();
}
@Override
public Map header() throws IOException {
return response.header();
}
@Override
public InputStream body() throws IOException {
return body;
}
});
}
}