01 /*
02 * Created on Jul 15, 2004
03 *
04 * To change the template for this generated file go to
05 * Window - Preferences - Java - Code Generation - Code and Comments
06 */
07 package biz.xsoftware.examples.advanced;
08
09 /**
10 * @author Dean Hiller
11 *
12 * To change the template for this generated type comment go to
13 * Window - Preferences - Java - Code Generation - Code and Comments
14 */
15 public interface TaskRecordService {
16
17 public User getUser(String id);
18
19 }
|