Package jnode.dto

Examples of jnode.dto.Schedule


          .getById(item.getJscript().getId()).getContent();
      if (content != null) {
        logger.l5(MessageFormat.format("execute script {0}", content));
        engine.eval(content, bindings);
        // выполнились? и иксипшена не произошло? ну вот это счастье!
        Schedule modItem = ORMManager.get(Schedule.class).getById(
            item.getId());
        modItem.setLastRunDate(new Date());
        ORMManager.get(Schedule.class).update(modItem);
      }

    }
  }
View Full Code Here

TOP

Related Classes of jnode.dto.Schedule

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.