1 package org.kuali.ole.alert.bo;
2
3
4 import org.kuali.ole.alert.bo.AlertDocument;
5 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
6
7
8
9
10 public class AlertFieldValueMapping extends PersistableBusinessObjectBase {
11
12 private String alertFieldValueMappingId;
13
14 private String fieldName;
15
16 private String fieldType;
17
18 private String fieldValue;
19
20 private boolean booFieldValue;
21
22 private String alertDocumentId;
23
24 private AlertDocument alertDocument;
25
26
27
28 public String getAlertFieldValueMappingId() {
29 return alertFieldValueMappingId;
30 }
31
32 public void setAlertFieldValueMappingId(String alertFieldValueMappingId) {
33 this.alertFieldValueMappingId = alertFieldValueMappingId;
34 }
35
36 public String getFieldName() {
37 return fieldName;
38 }
39
40 public void setFieldName(String fieldName) {
41 this.fieldName = fieldName;
42 }
43
44 public String getFieldType() {
45 return fieldType;
46 }
47
48 public void setFieldType(String fieldType) {
49 this.fieldType = fieldType;
50 }
51
52 public String getFieldValue() {
53 return fieldValue;
54 }
55
56 public void setFieldValue(String fieldValue) {
57 this.fieldValue = fieldValue;
58 }
59
60 public String getAlertDocumentId() {
61 return alertDocumentId;
62 }
63
64 public void setAlertDocumentId(String alertDocumentId) {
65 this.alertDocumentId = alertDocumentId;
66 }
67
68 public AlertDocument getAlertDocument() {
69 return alertDocument;
70 }
71
72 public void setAlertDocument(AlertDocument alertDocument) {
73 this.alertDocument = alertDocument;
74 }
75
76 public boolean isBooFieldValue() {
77 return booFieldValue;
78 }
79
80 public void setBooFieldValue(boolean booFieldValue) {
81 this.booFieldValue = booFieldValue;
82 }
83 }