1 package org.kuali.ole.deliver.calendar.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.util.LinkedHashMap;
6
7
8
9
10 public class OleCalendarGroup extends PersistableBusinessObjectBase {
11
12 private String calendarGroupId;
13 private String calendarGroupCode;
14 private String calendarGroupName;
15 private boolean active;
16
17 public String getCalendarGroupId() {
18 return calendarGroupId;
19 }
20
21 public void setCalendarGroupId(String calendarGroupId) {
22 this.calendarGroupId = calendarGroupId;
23 }
24
25 public String getCalendarGroupCode() {
26 return calendarGroupCode;
27 }
28
29 public void setCalendarGroupCode(String calendarGroupCode) {
30 this.calendarGroupCode = calendarGroupCode;
31 }
32
33 public String getCalendarGroupName() {
34 return calendarGroupName;
35 }
36
37 public void setCalendarGroupName(String calendarGroupName) {
38 this.calendarGroupName = calendarGroupName;
39 }
40
41 public boolean isActive() {
42 return active;
43 }
44
45 public void setActive(boolean active) {
46 this.active = active;
47 }
48
49 protected LinkedHashMap toStringMapper() {
50 LinkedHashMap toStringMap = new LinkedHashMap();
51 toStringMap.put("calendarGroupId", calendarGroupId);
52 toStringMap.put("active", active);
53 return toStringMap;
54 }
55 }