1
2
3
4
5
6 package net.kwfgrid.gwui.servlets;
7
8 public interface ServletConstants {
9 /*** The key for the "newsession" parameter. */
10 public static final String KEY_NEWSESSION = "newsession";
11 /*** The key for the "command" parameter. */
12 public static final String KEY_COMMAND = "command";
13 /*** A possible value of the "command" parameter. */
14 public static final String EDIT_COMMAND = "edit";
15 /*** A possible value of the "command" parameter. */
16 public static final String CREATE_COMMAND = "create";
17 /*** A possible value of the "command" parameter. */
18 public static final String FIRE_COMMAND = "fire";
19 /*** The key for the "gwesAddress" parameter. */
20 public static final String KEY_GWESADDRESS = "gwesAddress";
21 /*** The key for the "workflowID" parameter. */
22 public static final String KEY_WORKFLOWID = "workflowID";
23 /*** The key for the "versionNumber" parameter. */
24 public static final String KEY_VERSIONNUMBER = "versionNumber";
25 /*** The key for the "placeID" parameter. */
26 public static final String KEY_PLACEID = "placeID";
27 /*** The key for the "transitionID" parameter. */
28 public static final String KEY_TRANSITIONID = "transitionID";
29 /*** The key for the "tokenIndex" parameter. */
30 public static final String KEY_TOKENINDEX = "tokenIndex";
31 /*** The key for the "formURL" parameter. */
32 public static final String KEY_FORMURL = "formURL";
33
34 /*** The key for the "action" attribute. */
35 public static final String KEY_ACTION = "action";
36 /*** A possible value of the "action" attribute. */
37 public static final String TOKEN_ACTION = "token";
38 /*** A possible value of the "action" attribute. */
39 public static final String FORM_ACTION = "form";
40 /*** The key for the "workflowInstance" attribute. */
41 public static final String KEY_WORKFLOWINSTANCE = "workflowInstance";
42 /*** The key for the "outedgeIndex" attribute. */
43 public static final String KEY_OUTEDGEINDEX = "outedgeIndex";
44 /*** The key for the "tokenList" attribute. */
45 public static final String KEY_TOKENLIST = "tokenList";
46
47 /*** The key for the "servlet-base-url" property */
48 public static final String KEY_SERVLET_BASE_URL = "servlet-base-url";
49 }