/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package ejb; import java.util.Date; import javax.ejb.LocalBean; import javax.ejb.Schedule; import javax.ejb.Stateless; /** * * @author fra */ @Stateless @LocalBean public class NewSessionBean { @Schedule(dayOfWeek="Mon-Fri", hour="7", minute="0", second="0") public void dailyTask() { System.out.println("Here I am at " + new Date()); } }