Class CalendarEventAttendee
- java.lang.Object
-
- org.ametys.plugins.workspaces.calendars.events.CalendarEventAttendee
-
public class CalendarEventAttendee extends Object
Calendar event attendee interface
-
-
Constructor Summary
Constructors Constructor Description CalendarEventAttendee()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEmail()Get the email of the attendeeStringgetLogin()Get the login of the attendeeStringgetPopulationId()Get the population ID of the attendeebooleanisExternal()true if the attendee is externalbooleanisMandatory()true if the attendee is mandatoryvoidsetEmail(String email)Set the email of the attendeevoidsetIsExternal(boolean external)Set if the attendee is externalvoidsetIsMandatory(boolean mandatory)Set if the attendee is mandatoryvoidsetLogin(String login)Set the login of the attendeevoidsetPopulationId(String populationId)Set the population ID of the attendee
-
-
-
Constructor Detail
-
CalendarEventAttendee
public CalendarEventAttendee()
-
-
Method Detail
-
getPopulationId
public String getPopulationId()
Get the population ID of the attendee- Returns:
- the population ID of the attendee
-
isExternal
public boolean isExternal()
true if the attendee is external- Returns:
- true if the attendee is external
-
isMandatory
public boolean isMandatory()
true if the attendee is mandatory- Returns:
- true if the attendee is mandatory
-
setPopulationId
public void setPopulationId(String populationId)
Set the population ID of the attendee- Parameters:
populationId- the population ID
-
setLogin
public void setLogin(String login)
Set the login of the attendee- Parameters:
login- the login
-
setEmail
public void setEmail(String email)
Set the email of the attendee- Parameters:
email- the email
-
setIsExternal
public void setIsExternal(boolean external)
Set if the attendee is external- Parameters:
external- is external
-
setIsMandatory
public void setIsMandatory(boolean mandatory)
Set if the attendee is mandatory- Parameters:
mandatory- is mandatory
-
-