protected static void stopThread(String profile) {
DeadlineChecker thread = getThread(profile);
if (thread != null) {
LogUtil.info(DeadlineThreadManager.class.getName(), "Stopping DeadlineChecker for profile " + profile);
thread.stopChecker();
threadMap.remove(profile);
}
}
}