View Javadoc
1   package org.kuali.ole.ingest.pojo;
2   
3   import java.util.List;
4   
5   /**
6    * OleAgenda is a business object class for Ole Agenda
7    */
8   public class OleAgenda {
9       private String name;
10      private String description;
11      private String contextName;
12      private String categoryName;
13      private List<KrmsRule> rules;
14      private List<ProfileAttributeBo> profileAttributes;
15      /**
16       * Gets the name attribute.
17       * @return  Returns the name.
18       */
19      public String getName() {
20          return name;
21      }
22      /**
23       * Sets the name attribute value.
24       * @param name The name to set.
25       */
26      public void setName(String name) {
27          this.name = name;
28      }
29      /**
30       * Gets the description attribute.
31       * @return  Returns the description.
32       */
33      public String getDescription() {
34          return description;
35      }
36      /**
37       * Sets the description attribute value.
38       * @param description The description to set.
39       */
40      public void setDescription(String description) {
41          this.description = description;
42      }
43      /**
44       * Gets the contextName attribute.
45       * @return  Returns the contextName.
46       */
47      public String getContextName() {
48          return contextName;
49      }
50      /**
51       * Sets the contextName attribute value.
52       * @param contextName The contextName to set.
53       */
54      public void setContextName(String contextName) {
55          this.contextName = contextName;
56      }
57      /**
58       * Gets the categoryName attribute.
59       * @return  Returns the categoryName.
60       */
61      public String getCategoryName() {
62          return categoryName;
63      }
64      /**
65       * Sets the categoryName attribute value.
66       * @param categoryName The categoryName to set.
67       */
68      public void setCategoryName(String categoryName) {
69          this.categoryName = categoryName;
70      }
71      /**
72       * Gets the rules attribute.
73       * @return  Returns the rules.
74       */
75      public List<KrmsRule> getRules() {
76          return rules;
77      }
78      /**
79       * Sets the rules attribute value.
80       * @param rules The rules to set.
81       */
82      public void setRules(List<KrmsRule> rules) {
83          this.rules = rules;
84      }
85      /**
86       * Gets the profileAttributes attribute.
87       * @return  Returns the profileAttributes.
88       */
89      public List<ProfileAttributeBo> getProfileAttributes() {
90          return profileAttributes;
91      }
92      /**
93       * Sets the profileAttributes attribute value.
94       * @param profileAttributes The profileAttributes to set.
95       */
96      public void setProfileAttributes(List<ProfileAttributeBo> profileAttributes) {
97          this.profileAttributes = profileAttributes;
98      }
99  }