1 package org.kuali.ole.ingest.pojo;
2
3 import java.util.List;
4
5
6
7
8 public class OleRule {
9 private String name;
10 private String term;
11 private String matchType;
12 private String docType;
13 private MatchPoint incomingField;
14 private MatchPoint existingField;
15 private List<OleAction> trueActions;
16 private List<OleAction> falseActions;
17
18
19
20
21 public String getName() {
22 return name;
23 }
24
25
26
27
28 public void setName(String name) {
29 this.name = name;
30 }
31
32
33
34
35 public String getTerm() {
36 return term;
37 }
38
39
40
41
42 public void setTerm(String term) {
43 this.term = term;
44 }
45
46
47
48
49 public String getMatchType() {
50 return matchType;
51 }
52
53
54
55
56 public String getDocType() {
57 return docType;
58 }
59
60
61
62
63 public void setDocType(String docType) {
64 this.docType = docType;
65 }
66
67
68
69
70 public MatchPoint getIncomingField() {
71 return incomingField;
72 }
73
74
75
76
77 public void setIncomingField(MatchPoint incomingField) {
78 this.incomingField = incomingField;
79 }
80
81
82
83
84 public MatchPoint getExistingField() {
85 return existingField;
86 }
87
88
89
90
91 public void setExistingField(MatchPoint existingField) {
92 this.existingField = existingField;
93 }
94
95
96
97
98 public void setMatchType(String matchType) {
99 this.matchType = matchType;
100 }
101
102
103
104
105 public List<OleAction> getTrueActions() {
106 return trueActions;
107 }
108
109
110
111
112 public void setTrueActions(List<OleAction> trueActions) {
113 this.trueActions = trueActions;
114 }
115
116
117
118
119 public List<OleAction> getFalseActions() {
120 return falseActions;
121 }
122
123
124
125
126 public void setFalseActions(List<OleAction> falseActions) {
127 this.falseActions = falseActions;
128 }
129 }