Skip to content

Instantly share code, notes, and snippets.

@doobrie
doobrie / CalendarTimer.java
Created September 24, 2016 14:25
Creating a Stateless Session Bean with 2 timers
package com.acme.timer;
import javax.ejb.Schedule;
import javax.ejb.Schedules;
import javax.ejb.Stateless;
import javax.ejb.Timer;
@Stateless
public class CalendarTimer {