1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kns.rule.event;
17
18 import org.apache.log4j.Logger;
19 import org.kuali.rice.kns.rule.PromptBeforeValidation;
20 import org.kuali.rice.krad.document.Document;
21 import org.kuali.rice.krad.rules.rule.BusinessRule;
22 import org.kuali.rice.krad.rules.rule.event.DocumentEventBase;
23
24
25
26
27
28
29 @Deprecated
30 public class PromptBeforeValidationEvent extends DocumentEventBase {
31 private static final Logger LOG = Logger.getLogger(PromptBeforeValidationEvent.class);
32
33 boolean performQuestion;
34 String actionForwardName;
35 String questionId;
36 String questionText;
37 String questionType;
38 String questionCaller;
39 String questionContext;
40
41
42
43
44
45
46
47 public PromptBeforeValidationEvent(String description, String errorPathPrefix, Document document) {
48
49 super(description, errorPathPrefix);
50 this.document = document;
51
52 LOG.debug(description);
53
54 performQuestion = false;
55 }
56
57
58
59
60
61 public String getActionForwardName() {
62 return actionForwardName;
63 }
64
65
66
67
68 public void setActionForwardName(String actionForwardName) {
69 this.actionForwardName = actionForwardName;
70 }
71
72
73
74
75 public boolean isPerformQuestion() {
76 return performQuestion;
77 }
78
79
80
81
82 public void setPerformQuestion(boolean performQuestion) {
83 this.performQuestion = performQuestion;
84 }
85
86
87
88
89 public String getQuestionCaller() {
90 return questionCaller;
91 }
92
93
94
95
96 public void setQuestionCaller(String questionCaller) {
97 this.questionCaller = questionCaller;
98 }
99
100
101
102
103 public String getQuestionContext() {
104 return questionContext;
105 }
106
107
108
109
110 public void setQuestionContext(String questionContext) {
111 this.questionContext = questionContext;
112 }
113
114
115
116
117 public String getQuestionId() {
118 return questionId;
119 }
120
121
122
123
124 public void setQuestionId(String questionId) {
125 this.questionId = questionId;
126 }
127
128
129
130
131 public String getQuestionText() {
132 return questionText;
133 }
134
135
136
137
138 public void setQuestionText(String questionText) {
139 this.questionText = questionText;
140 }
141
142
143
144
145 public String getQuestionType() {
146 return questionType;
147 }
148
149
150
151
152 public void setQuestionType(String questionType) {
153 this.questionType = questionType;
154 }
155
156
157
158
159 public Class<? extends BusinessRule> getRuleInterfaceClass() {
160 return PromptBeforeValidation.class;
161 }
162
163
164
165
166
167 public boolean invokeRuleMethod(BusinessRule rule) {
168 return true;
169 }
170 }