mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
6 lines
266 B
Java
6 lines
266 B
Java
// Phase 14 fixture stub — minimal servlet response shape.
|
|
public class HttpServletResponse {
|
|
private final StringBuilder body = new StringBuilder();
|
|
public void write(String s) { body.append(s); }
|
|
public String getBody() { return body.toString(); }
|
|
}
|