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