View Javadoc

1   package org.kuali.ole.ingest.pojo;
2   
3   import java.util.List;
4   
5   /**
6    * KrmsRule is a business object class for Krms Rule
7    */
8   public class KrmsRule {
9   
10      private String name;
11      private OleProposition compoundProposition;
12      private KrmsProposition proposition;
13      private List<KrmsAction> trueActions;
14      private List<KrmsAction> falseActions;
15      /**
16       * Gets the trueActions attribute.
17       * @return  Returns the trueActions.
18       */
19      public List<KrmsAction> getTrueActions() {
20          return trueActions;
21      }
22      /**
23       * Sets the trueActions attribute value.
24       * @param trueActions  The trueActions to set.
25       */
26      public void setTrueActions(List<KrmsAction> trueActions) {
27          this.trueActions = trueActions;
28      }
29      /**
30       * Gets the falseActions attribute.
31       * @return  Returns the falseActions.
32       */
33      public List<KrmsAction> getFalseActions() {
34          return falseActions;
35      }
36      /**
37       * Sets the falseActions attribute value.
38       * @param falseActions  The falseActions to set.
39       */
40      public void setFalseActions(List<KrmsAction> falseActions) {
41          this.falseActions = falseActions;
42      }
43      /**
44       * Gets the name attribute.
45       * @return  Returns the name.
46       */
47      public String getName() {
48          return name;
49      }
50      /**
51       * Sets the name attribute value.
52       * @param name  The name to set.
53       */
54      public void setName(String name) {
55          this.name = name;
56      }
57      /**
58       * Gets the compoundProposition attribute.
59       * @return  Returns the compoundProposition.
60       */
61      public OleProposition getCompoundProposition() {
62          return compoundProposition;
63      }
64      /**
65       * Sets the compoundProposition attribute value.
66       * @param compoundProposition  The compoundProposition to set.
67       */
68      public void setCompoundProposition(OleProposition compoundProposition) {
69          this.compoundProposition = compoundProposition;
70      }
71      /**
72       * Gets the proposition attribute.
73       * @return  Returns the proposition.
74       */
75      public KrmsProposition getProposition() {
76          return proposition;
77      }
78      /**
79       * Sets the proposition attribute value.
80       * @param proposition  The proposition to set.
81       */
82      public void setProposition(KrmsProposition proposition) {
83          this.proposition = proposition;
84      }
85  }