package chain; /** Handles CRITICAL tickets — all-hands incident response */ public class CriticalIncidentTeam extends SupportHandler { @Override protected boolean canHandle(SupportTicket ticket) { return ticket.getPriority() == SupportTicket.Priority.CRITICAL; } @Override protected void handle(SupportTicket ticket) { System.out.println(" [CRITICAL TEAM] All-hands war room opened: " + ticket); } }