public class SignupAttendee extends Object implements Comparable<SignupAttendee>
This class holds the information for signup attendee. It's mapped directly to the DB storage by Hibernate
| Constructor and Description |
|---|
SignupAttendee()
Constructor
|
SignupAttendee(String attendeeUserId,
String signupSiteId)
This is a constructor
|
| Modifier and Type | Method and Description |
|---|---|
int |
compareTo(SignupAttendee signupAttendeeToCompare)
for sorting purpose.
|
String |
getAttendeeUserId()
get the internal user id (not username)
|
String |
getCalendarEventId()
get the calendar event Id
|
String |
getCalendarId()
get Calendar Id
|
String |
getComments()
get the comments
|
String |
getDisplayName() |
Instant |
getInscriptionTime() |
String |
getSignupSiteId()
get the site Id, which the attendee is in
|
boolean |
isAttended()
isAttended
|
void |
setAttended(boolean attended)
this is a setter.
|
void |
setAttendeeUserId(String attendeeId)
this is a setter method and it set the internal user id (not username)
|
void |
setCalendarEventId(String calendarEventId)
this is a setter
|
void |
setCalendarId(String calendarId)
this is a setter.
|
void |
setComments(String comment)
this is a setter.
|
void |
setDisplayName(String displayName) |
void |
setInscriptionTime(Instant inscriptionTime) |
void |
setSignupSiteId(String signupSiteId)
this is a setter.
|
public String getAttendeeUserId()
public void setAttendeeUserId(String attendeeId)
attendeeId - the internal user id (not username)public String getCalendarEventId()
public void setCalendarEventId(String calendarEventId)
calendarEventId - a calendar event Id stringpublic String getCalendarId()
public void setCalendarId(String calendarId)
calendarId - a Calendar Idpublic String getComments()
public void setComments(String comment)
comment - a comment by userpublic boolean isAttended()
public void setAttended(boolean attended)
attended - boolean of attendancepublic String getSignupSiteId()
public void setSignupSiteId(String signupSiteId)
signupSiteId - a site Idpublic String getDisplayName()
public void setDisplayName(String displayName)
public Instant getInscriptionTime()
public void setInscriptionTime(Instant inscriptionTime)
public int compareTo(SignupAttendee signupAttendeeToCompare)
compareTo in interface Comparable<SignupAttendee>Copyright © 2003–2021 Sakai Project. All rights reserved.