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