1 package org.kuali.ole.ingest.pojo;
2
3 import java.util.List;
4
5
6
7
8 public class KrmsProposition {
9 private String term;
10 private String type;
11 private String operator;
12
13 private String constant;
14 private String function;
15 private String operatorCode;
16
17
18
19
20
21 public String getTerm() {
22 return term;
23 }
24
25
26
27
28 public void setTerm(String term) {
29 this.term = term;
30 }
31
32
33
34
35 public String getType() {
36 return type;
37 }
38
39
40
41
42 public void setType(String type) {
43 this.type = type;
44 }
45
46
47
48
49 public String getOperator() {
50 return operator;
51 }
52
53
54
55
56 public void setOperator(String operator) {
57 this.operator = operator;
58 }
59
60
61
62
63 public String getConstant() {
64 return constant;
65 }
66
67
68
69
70 public void setConstant(String constant) {
71 this.constant = constant;
72 }
73
74
75
76
77 public String getFunction() {
78 return function;
79 }
80
81
82
83
84 public void setFunction(String function) {
85 this.function = function;
86 }
87
88
89
90
91 public String getOperatorCode() {
92 return operatorCode;
93 }
94
95
96
97
98 public void setOperatorCode(String operatorCode) {
99 this.operatorCode = operatorCode;
100 }
101
102
103 }