View Javadoc
1   package org.kuali.ole.ingest.krms.pojo;
2   
3   
4   /**
5    * Created with IntelliJ IDEA.
6    * User: vivekb
7    * Date: 8/22/12
8    * Time: 3:04 PM
9    * To change this template use File | Settings | File Templates.
10   */
11  public class OleKrmsRule {
12  
13      private String name;
14      private OleKrmsProposition oleProposition;
15      private OleKrmsRuleAction trueActions;
16      private OleKrmsRuleAction falseActions;
17      /**
18       * Gets the trueActions attribute.
19       * @return  Returns the trueActions.
20       */
21      public OleKrmsRuleAction getTrueActions() {
22          return trueActions;
23      }
24      /**
25       * Sets the trueActions attribute value.
26       * @param trueActions  The trueActions to set.
27       */
28      public void setTrueActions(OleKrmsRuleAction trueActions) {
29          this.trueActions = trueActions;
30      }
31      /**
32       * Gets the falseActions attribute.
33       * @return  Returns the falseActions.
34       */
35      public OleKrmsRuleAction getFalseActions() {
36          return falseActions;
37      }
38      /**
39       * Sets the falseActions attribute value.
40       * @param falseActions  The falseActions to set.
41       */
42      public void setFalseActions(OleKrmsRuleAction falseActions) {
43          this.falseActions = falseActions;
44      }
45      /**
46       * Gets the name attribute.
47       * @return  Returns the name.
48       */
49      public String getName() {
50          return name;
51      }
52      /**
53       * Sets the name attribute value.
54       * @param name  The name to set.
55       */
56      public void setName(String name) {
57          this.name = name;
58      }
59  
60      public OleKrmsProposition getOleProposition() {
61          return oleProposition;
62      }
63  
64      public void setOleProposition(OleKrmsProposition oleProposition) {
65          this.oleProposition = oleProposition;
66      }
67  }