| 1 95 package com.ivata.groupware.business.calendar.event.meeting; 96 97 98 import java.util.Set ; 99 100 import com.ivata.groupware.business.addressbook.person.PersonDO; 101 import com.ivata.groupware.business.calendar.event.EventDO; 102 103 104 120 public class MeetingDO extends EventDO { 121 124 private Set attendees; 125 126 129 private Set categories; 130 131 134 private PersonDO chairPerson; 135 136 140 private String location; 141 142 153 public final Set getAttendees() { 154 return attendees; 155 } 156 157 168 public final Set getCategories() { 169 return categories; 170 } 171 172 179 public PersonDO getChairPerson() { 180 return chairPerson; 181 } 182 183 189 public final String getLocation() { 190 return location; 191 } 192 193 198 public final void setAttendees(final Set attendees) { 199 this.attendees = attendees; 200 } 201 202 207 public final void setCategories(final Set categories) { 208 this.categories = categories; 209 } 210 211 217 public final void setChairPerson(final PersonDO chairPerson) { 218 this.chairPerson = chairPerson; 219 } 220 221 226 public final void setLocation(final String location) { 227 this.location = location; 228 } 229 } 230 | Popular Tags |