mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-21 20:18:06 +02:00
9 lines
249 B
Java
9 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 _.-]", "_"));
|
||
|
|
}
|
||
|
|
}
|