* @return True if the schedule action has moved
* @throws ModelException
*/
protected boolean moveScheduleActionDown(ModelRequest request, String id) throws ModelException
{
ScheduleDAO scheduleDAO = (ScheduleDAO) request.getSpringBean(ScheduleDAO.ID);
ScheduleAction action = scheduleDAO.findScheduleActionById(NumberTools.toIntInstance(id));
if (action != null)
{
return scheduleDAO.moveScheduleActionDown(action);
}
return false;
}