nyx/tests/dynamic_fixtures/java/servlet_dopost/HttpServletResponse.java

7 lines
266 B
Java
Raw Normal View History

2026-06-05 10:16:30 -05:00
// 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(); }
}