Exemplo n.º 1
0
 public static Content content(int code, Readable content) {
   return content(code, new ChunkBuffer().append(Chunk.create(content)).close());
 }
Exemplo n.º 2
0
 public static Content content(int code, CharSequence content) {
   return content(code, new ChunkBuffer().append(Chunk.create(content)).close());
 }
Exemplo n.º 3
0
 public Content content(java.io.InputStream s) {
   return content(new ChunkBuffer().append(Chunk.create(s)).close());
 }
Exemplo n.º 4
0
 public static Content content(int code, java.io.InputStream content) {
   return content(code, new ChunkBuffer().append(Chunk.create(content)).close());
 }
Exemplo n.º 5
0
 public Content content(byte[] s) {
   return content(new ChunkBuffer().append(Chunk.create(s)).close());
 }
Exemplo n.º 6
0
 public Content content(CharSequence s) {
   return content(new ChunkBuffer().append(Chunk.create(s)).close());
 }
Exemplo n.º 7
0
 public Body body(java.io.InputStream s) {
   return body(new ChunkBuffer().append(Chunk.create(s)).close());
 }
Exemplo n.º 8
0
 public Body body(byte[] s) {
   return body(new ChunkBuffer().append(Chunk.create(s)).close());
 }
Exemplo n.º 9
0
 public Body body(CharSequence s) {
   return body(new ChunkBuffer().append(Chunk.create(s)).close());
 }