| 1 106 package com.ivata.groupware.business.calendar.event.meeting.attendee; 107 108 import com.ivata.groupware.business.addressbook.person.PersonDO; 109 import com.ivata.groupware.business.calendar.event.meeting.MeetingDO; 110 import com.ivata.groupware.container.persistence.BaseDO; 111 112 127 public class AttendeeDO extends BaseDO { 128 131 private boolean confirmed; 132 133 136 private MeetingDO meeting; 137 138 141 private PersonDO person; 142 150 public final boolean getConfirmed() { 151 return confirmed; 152 } 153 161 public final MeetingDO getMeeting() { 162 return meeting; 163 } 164 171 public PersonDO getPerson() { 172 return person; 173 } 174 175 181 public final void setConfirmed(final boolean confirmed) { 182 this.confirmed = confirmed; 183 } 184 185 190 public final void setMeeting(final MeetingDO meeting) { 191 this.meeting = meeting; 192 } 193 194 199 public final void setPerson(final PersonDO person) { 200 this.person = person; 201 } 202 } 203 | Popular Tags |