View Javadoc
1   /**
2    * Copyright 2005-2015 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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   * Event for handling warnings/questions before rules are called.
26   * 
27   * @deprecated Only used in KNS classes, use KRAD.
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       * @param description
44       * @param errorPathPrefix
45       * @param document
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       * @return Returns the actionForwardName.
60       */
61      public String getActionForwardName() {
62          return actionForwardName;
63      }
64  
65      /**
66       * @param actionForwardName The actionForwardName to set.
67       */
68      public void setActionForwardName(String actionForwardName) {
69          this.actionForwardName = actionForwardName;
70      }
71  
72      /**
73       * @return Returns the performQuestion.
74       */
75      public boolean isPerformQuestion() {
76          return performQuestion;
77      }
78  
79      /**
80       * @param performQuestion The performQuestion to set.
81       */
82      public void setPerformQuestion(boolean performQuestion) {
83          this.performQuestion = performQuestion;
84      }
85  
86      /**
87       * @return Returns the questionCaller.
88       */
89      public String getQuestionCaller() {
90          return questionCaller;
91      }
92  
93      /**
94       * @param questionCaller The questionCaller to set.
95       */
96      public void setQuestionCaller(String questionCaller) {
97          this.questionCaller = questionCaller;
98      }
99  
100     /**
101      * @return Returns the questionContext.
102      */
103     public String getQuestionContext() {
104         return questionContext;
105     }
106 
107     /**
108      * @param questionContext The questionContext to set.
109      */
110     public void setQuestionContext(String questionContext) {
111         this.questionContext = questionContext;
112     }
113 
114     /**
115      * @return Returns the questionId.
116      */
117     public String getQuestionId() {
118         return questionId;
119     }
120 
121     /**
122      * @param questionId The questionId to set.
123      */
124     public void setQuestionId(String questionId) {
125         this.questionId = questionId;
126     }
127 
128     /**
129      * @return Returns the questionText.
130      */
131     public String getQuestionText() {
132         return questionText;
133     }
134 
135     /**
136      * @param questionText The questionText to set.
137      */
138     public void setQuestionText(String questionText) {
139         this.questionText = questionText;
140     }
141 
142     /**
143      * @return Returns the questionType.
144      */
145     public String getQuestionType() {
146         return questionType;
147     }
148 
149     /**
150      * @param questionType The questionType to set.
151      */
152     public void setQuestionType(String questionType) {
153         this.questionType = questionType;
154     }
155 
156     /**
157      * @see org.kuali.rice.krad.rules.rule.event.RuleEvent#getRuleInterfaceClass()
158      */
159     public Class<? extends BusinessRule> getRuleInterfaceClass() {
160         return PromptBeforeValidation.class;
161     }
162 
163 
164     /**
165      * @see org.kuali.rice.krad.rules.rule.event.RuleEvent#invokeRuleMethod(org.kuali.rice.krad.rules.rule.BusinessRule)
166      */
167     public boolean invokeRuleMethod(BusinessRule rule) {
168         return true;
169     }
170 }