summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Rima Examples/src/examples/timer/CleanDayLimitOrders.java
blob: 55df6784042b492ba1f9e2a476f7336a7dd3243f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package examples.timer;

import javax.ejb.Remote;
import javax.ejb.Timer;


/**
 * This is the business interface for CleanDayLimitOrders enterprise bean.
 */
@Remote
public interface CleanDayLimitOrders {
    public void cleanPeriodicallyDayLimitOrders();
}