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