[pitboss/grind] deferred session-0009 (20260522T163126Z-7d60)

This commit is contained in:
pitboss 2026-05-22 14:53:22 -05:00
parent 33b5c69211
commit 2c61324784
11 changed files with 679 additions and 37 deletions

View file

@ -1,17 +0,0 @@
// Phase 11 (Track J.9) Java UNAUTHORIZED_ID benign control fixture.
import java.util.HashMap;
import java.util.Map;
public class Benign {
private static final String CALLER = "alice";
private static final Map<String, String> STORE = new HashMap<>();
static {
STORE.put("alice", "alice@x");
STORE.put("bob", "bob@x");
}
public static String run(String ownerId) {
if (!CALLER.equals(ownerId)) return null;
return STORE.get(ownerId);
}
}