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