View Javadoc
1   package org.kuali.ole.ingest.krms.pojo;
2   
3   
4   import org.kuali.ole.ingest.pojo.OverlayOption;
5   import org.kuali.ole.ingest.pojo.ProfileAttributeBo;
6   
7   import java.util.List;
8   
9   /**
10   * Created with IntelliJ IDEA.
11   * User: vivekb
12   * Date: 8/22/12
13   * Time: 3:04 PM
14   * To change this template use File | Settings | File Templates.
15   */
16  public class OleKrmsAgenda {
17      private String name;
18      private List<ProfileAttributeBo> profileAttributes;
19      private List<OleKrmsRule> rules;
20      private List<OverlayOption> overlayOptions;
21  
22      public List<ProfileAttributeBo> getProfileAttributes() {
23          return profileAttributes;
24      }
25  
26      public void setProfileAttributes(List<ProfileAttributeBo> profileAttributes) {
27          this.profileAttributes = profileAttributes;
28      }
29  
30      /**
31       * Gets the name attribute.
32       * @return  Returns the name.
33       */
34      public String getName() {
35          return name;
36      }
37      /**
38       * Sets the name attribute value.
39       * @param name The name to set.
40       */
41      public void setName(String name) {
42          this.name = name;
43      }
44      /**
45       * Gets the rules attribute.
46       * @return  Returns the rules.
47       */
48      public List<OleKrmsRule> getRules() {
49          return rules;
50      }
51      /**
52       * Sets the rules attribute value.
53       * @param rules The rules to set.
54       */
55      public void setRules(List<OleKrmsRule> rules) {
56          this.rules = rules;
57      }
58      /**
59       * Gets the overlayOptions attribute.
60       * @return  Returns the overlayOptions.
61       */
62      public List<OverlayOption> getOverlayOptions() {
63          return overlayOptions;
64      }
65      /**
66       * Sets the overlayOptions attribute value.
67       * @param overlayOptions The overlayOptions to set.
68       */
69      public void setOverlayOption(List<OverlayOption> overlayOptions) {
70          this.overlayOptions = overlayOptions;
71      }
72  }