1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.common.messagebuilder.booleanmessage.ast;
17
18 public class BooleanFunctionResult {
19 private String booleanFunction;
20 private Boolean result;
21 private String message;
22
23 public BooleanFunctionResult(String booleanFunction, Boolean result, String message) {
24 this.result = result;
25 this.message = message;
26 this.booleanFunction = booleanFunction;
27 }
28
29 public Boolean getResult() {
30 return result;
31 }
32
33 public String getMessage() {
34 return message;
35 }
36
37 public String getBooleanFunction() {
38 return booleanFunction;
39 }
40
41 }