1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.rice.kew.routemodule;
18
19
20
21
22 public class TestRouteModuleConstants {
23
24 public static final String TEST_ROUTE_MODULE_ROUTE_METHOD = "TestRouteModule";
25
26 public static final String DOC_CONTENT_ELEMENT = "docContent";
27 public static final String ROUTE_LEVEL_ELEMENT = "routeLevel";
28 public static final String RESPONSIBILITY_ELEMENT = "responsibility";
29 public static final String RECIPIENT_ELEMENT = "recipient";
30 public static final String DELEGATIONS_ELEMENT = "delegations";
31 public static final String DELEGATION_ELEMENT = "delegation";
32 public static final String DELEGATE_RESPONSIBILITY_ELEMENT = "delegateResponsibility";
33
34 public static final String PRIORITY_ATTRIBUTE = "priority";
35 public static final String ACTION_REQUESTED_ATTRIBUTE = "actionRequested";
36 public static final String TYPE_ATTRIBUTE = "type";
37 public static final String ID_ATTRIBUTE = "id";
38
39 }