View Javadoc
1   package org.kuali.ole.ingest.pojo;
2   
3   import java.util.List;
4   
5   /**
6    * KrmsProposition is a business object class for Krms Proposition
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       * Gets the term attribute.
19       * @return  Returns the term.
20       */
21      public String getTerm() {
22          return term;
23      }
24      /**
25       * Sets the term attribute value.
26       * @param term  The term to set.
27       */
28      public void setTerm(String term) {
29          this.term = term;
30      }
31      /**
32       * Gets the type attribute.
33       * @return  Returns the type.
34       */
35      public String getType() {
36          return type;
37      }
38      /**
39       * Sets the type attribute value.
40       * @param type  The type to set.
41       */
42      public void setType(String type) {
43          this.type = type;
44      }
45      /**
46       * Gets the operator attribute.
47       * @return  Returns the operator.
48       */
49      public String getOperator() {
50          return operator;
51      }
52      /**
53       * Sets the operator attribute value.
54       * @param operator  The operator to set.
55       */
56      public void setOperator(String operator) {
57          this.operator = operator;
58      }
59      /**
60       * Gets the constant attribute.
61       * @return  Returns the constant.
62       */
63      public String getConstant() {
64          return constant;
65      }
66      /**
67       * Sets the constant attribute value.
68       * @param constant  The constant to set.
69       */
70      public void setConstant(String constant) {
71          this.constant = constant;
72      }
73      /**
74       * Gets the function attribute.
75       * @return  Returns the function.
76       */
77      public String getFunction() {
78          return function;
79      }
80      /**
81       * Sets the function attribute value.
82       * @param function  The function to set.
83       */
84      public void setFunction(String function) {
85          this.function = function;
86      }
87      /**
88       * Gets the operatorCode attribute.
89       * @return  Returns the operatorCode.
90       */
91      public String getOperatorCode() {
92          return operatorCode;
93      }
94      /**
95       * Sets the operatorCode attribute value.
96       * @param operatorCode  The operatorCode to set.
97       */
98      public void setOperatorCode(String operatorCode) {
99          this.operatorCode = operatorCode;
100     }
101 
102 
103 }