1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.rice.kew.rule;
18
19 import java.util.Collections;
20 import java.util.List;
21 import java.util.Map;
22
23 import org.kuali.rice.kns.web.ui.Row;
24
25
26
27
28
29
30
31 public abstract class AbstractWorkflowAttribute implements WorkflowAttribute {
32 protected boolean required;
33
34 public List<Row> getRuleRows() {
35 return Collections.EMPTY_LIST;
36 }
37
38 public List<Row> getRoutingDataRows() {
39 return Collections.EMPTY_LIST;
40 }
41
42 public String getDocContent() {
43 return "";
44 }
45
46 public List<RuleExtensionValue> getRuleExtensionValues() {
47 return Collections.EMPTY_LIST;
48 }
49
50 public List validateRoutingData(Map paramMap) {
51 return Collections.EMPTY_LIST;
52 }
53
54 public List validateRuleData(Map paramMap) {
55 return Collections.EMPTY_LIST;
56 }
57
58 public void setRequired(boolean required) {
59 this.required = required;
60 }
61
62 public boolean isRequired() {
63 return required;
64 }
65
66
67 public String getIdFieldName() {
68 return "";
69 }
70 public String getLockFieldName() {
71 return "";
72 }
73 }