mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
8 lines
249 B
Java
8 lines
249 B
Java
// Phase 21 — Quartz benign control.
|
|
// org.quartz.Job marker (substring scan only).
|
|
|
|
public class Benign {
|
|
public void execute(String payload) {
|
|
System.out.println("scheduled: " + payload.replaceAll("[^A-Za-z0-9 _.-]", "_"));
|
|
}
|
|
}
|