1 package org.kite9.framework.server;
2
3 /***
4 * @author moffatr
5 *
6 */
7 public interface WorkItem {
8
9 public String getSubjectId();
10
11 public String getName();
12
13 public Object getDesignItem();
14
15 public int getProjectId();
16
17 public String getSecretKey();
18
19 }