public static Content content(int code, Readable content) { return content(code, new ChunkBuffer().append(Chunk.create(content)).close()); }
public static Content content(int code, CharSequence content) { return content(code, new ChunkBuffer().append(Chunk.create(content)).close()); }
public Content content(java.io.InputStream s) { return content(new ChunkBuffer().append(Chunk.create(s)).close()); }
public static Content content(int code, java.io.InputStream content) { return content(code, new ChunkBuffer().append(Chunk.create(content)).close()); }
public Content content(byte[] s) { return content(new ChunkBuffer().append(Chunk.create(s)).close()); }
public Content content(CharSequence s) { return content(new ChunkBuffer().append(Chunk.create(s)).close()); }
public Body body(java.io.InputStream s) { return body(new ChunkBuffer().append(Chunk.create(s)).close()); }
public Body body(byte[] s) { return body(new ChunkBuffer().append(Chunk.create(s)).close()); }
public Body body(CharSequence s) { return body(new ChunkBuffer().append(Chunk.create(s)).close()); }