01: package org.osbl.demo.urlaub.service;
02:
03: import java.util.*;
04:
05: /**
06: * @author hengels
07: * @version $Revision: 840 $
08: */
09: public interface GroupWare {
10: public static int BUSY = 1;
11: public static int OUT_OF_OFFICE = 2;
12: public static int TENTATIVE = 3;
13:
14: void addEvent(int type, String user, Date from, Date until);
15: }
|