1
2
3
4
5 package org.flowfuse.base;
6
7
8
9 /***
10 * @author <a href="stefan@flowfuse.org">Stefan Kleineikenscheidt</a>,
11 * Flowfuse.org
12 * @version $Id: Constants.java,v 1.1 2005/11/20 14:55:51 skleinei Exp $
13 */
14 public class Constants {
15
16
17 public final static String rcsid = "$Id: Constants.java,v 1.1 2005/11/20 14:55:51 skleinei Exp $";
18
19 public static final String REQUEST_PARAM_WORKFLOW_ACTION = "workflow.action";
20
21 public static final String WF_FUNCTION_COMMENT = "workflow.function.param.comment";
22
23 public static final String WF_FUNCTION_PAYLOAD = "workflow.function.param.payload";
24
25 public static final String WF_FUNCTION_WORKFLOWDATA = "workflow.function.param.workflowdata";
26
27 public static final String WF_FUNCTION_ATTACHMENT = "workflow.function.param.attachment";
28
29 public static final int WF_ACTION_COMMENT = 101;
30
31 public static final int WF_ACTION_ATTACH = 102;
32
33 public static final String WF_PERSISTENCE_MANAGER = "workflow.function.param.workitem";
34
35 public static final String USER_KEY = "flowfuse.user";
36 }
37
38