mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Checkstyle
This commit is contained in:
@ -292,6 +292,7 @@ public class QScheduleManager
|
|||||||
{
|
{
|
||||||
throw new NotImplementedException("ScheduledJob table automations are not yet implemented...");
|
throw new NotImplementedException("ScheduledJob table automations are not yet implemented...");
|
||||||
}
|
}
|
||||||
|
default -> throw new IllegalStateException("Unexpected value: " + ScheduledJobType.getById(scheduledJob.getType()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -321,6 +322,7 @@ public class QScheduleManager
|
|||||||
{
|
{
|
||||||
throw new NotImplementedException("ScheduledJob table automations are not yet implemented...");
|
throw new NotImplementedException("ScheduledJob table automations are not yet implemented...");
|
||||||
}
|
}
|
||||||
|
default -> throw new IllegalStateException("Unexpected value: " + ScheduledJobType.getById(scheduledJob.getType()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,9 +83,9 @@ public class QuartzScheduler implements QSchedulerInterface
|
|||||||
|
|
||||||
private Scheduler scheduler;
|
private Scheduler scheduler;
|
||||||
|
|
||||||
private final static String GROUP_NAME_PROCESSES = "processes";
|
private static final String GROUP_NAME_PROCESSES = "processes";
|
||||||
private final static String GROUP_NAME_SQS_QUEUES = "sqsQueues";
|
private static final String GROUP_NAME_SQS_QUEUES = "sqsQueues";
|
||||||
private final static String GROUP_NAME_TABLE_AUTOMATIONS = "tableAutomations";
|
private static final String GROUP_NAME_TABLE_AUTOMATIONS = "tableAutomations";
|
||||||
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
Reference in New Issue
Block a user