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