1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.rule.web; |
17 | |
|
18 | |
import java.util.ArrayList; |
19 | |
import java.util.List; |
20 | |
|
21 | |
import org.kuali.rice.kew.rule.web.RuleQuickLinksAction.DocumentTypeQuickLinksStructure; |
22 | |
import org.kuali.rice.kns.web.struts.form.KualiForm; |
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | 0 | public class RuleQuickLinksForm extends KualiForm { |
32 | |
|
33 | |
private static final long serialVersionUID = 3632283509506923869L; |
34 | |
private String rootDocTypeName; |
35 | 0 | protected boolean canInitiateDocumentTypeDocument = false; |
36 | 0 | private List<DocumentTypeQuickLinksStructure> documentTypeQuickLinksStructures = new ArrayList<DocumentTypeQuickLinksStructure>(); |
37 | |
|
38 | |
public String getRootDocTypeName() { |
39 | 0 | return rootDocTypeName; |
40 | |
} |
41 | |
public void setRootDocTypeName(String rootDocTypeName) { |
42 | 0 | this.rootDocTypeName = rootDocTypeName; |
43 | 0 | } |
44 | |
public List<DocumentTypeQuickLinksStructure> getDocumentTypeQuickLinksStructures() { |
45 | 0 | return this.documentTypeQuickLinksStructures; |
46 | |
} |
47 | |
public void setDocumentTypeQuickLinksStructures( |
48 | |
List<DocumentTypeQuickLinksStructure> documentTypeQuickLinksStructures) { |
49 | 0 | this.documentTypeQuickLinksStructures = documentTypeQuickLinksStructures; |
50 | 0 | } |
51 | |
public boolean isCanInitiateDocumentTypeDocument() { |
52 | 0 | return this.canInitiateDocumentTypeDocument; |
53 | |
} |
54 | |
public void setCanInitiateDocumentTypeDocument( |
55 | |
boolean canInitiateDocumentTypeDocument) { |
56 | 0 | this.canInitiateDocumentTypeDocument = canInitiateDocumentTypeDocument; |
57 | 0 | } |
58 | |
|
59 | |
|
60 | |
} |