Package com.google.code.lightssh.project.scheduler.entity

Examples of com.google.code.lightssh.project.scheduler.entity.Plan


      return;
   
    if( fireTime == null )
      fireTime = Calendar.getInstance();
   
    Plan plan = dao.read(id);
    if( plan != null ){
      plan.setFireTime(fireTime);
      dao.update(plan);
    }
  }
View Full Code Here


      return;
   
    if( finishTime == null )
      finishTime = Calendar.getInstance();
   
    Plan plan = dao.read(id);
    if( plan != null ){
      if( plan.getFinishTime() == null )
        plan.setFinishTime(finishTime);
      plan.setFinished(Boolean.TRUE);
     
      dao.update(plan);
    }
  }
View Full Code Here

TOP

Related Classes of com.google.code.lightssh.project.scheduler.entity.Plan

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.