Package de.iritgo.aktera.scheduler.entity

Examples of de.iritgo.aktera.scheduler.entity.ScheduleAction


  public void deletePersistent(ModelRequest request, ModelResponse response, Object id, Persistent persistent,
          boolean systemDelete) throws ModelException, PersistenceException
  {
    synchronized (ScheduleAction.class)
    {
      ScheduleAction action = scheduleDAO.findScheduleActionById(persistent.getFieldInt("id"));

      scheduleDAO.moveScheduleActionToEnd(action);
      super.deletePersistent(request, response, id, persistent, systemDelete);
    }
  }
View Full Code Here


   * @throws ModelException
   */
  protected boolean moveScheduleActionUp(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.moveScheduleActionUp(action);
    }
View Full Code Here

   * @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);
    }
View Full Code Here

TOP

Related Classes of de.iritgo.aktera.scheduler.entity.ScheduleAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.