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 String
getEmail()
Get the email of the attendeeString
getLogin()
Get the login of the attendeeString
getPopulationId()
Get the population ID of the attendeeboolean
isExternal()
true if the attendee is externalboolean
isMandatory()
true if the attendee is mandatoryvoid
setEmail(String email)
Set the email of the attendeevoid
setIsExternal(boolean external)
Set if the attendee is externalvoid
setIsMandatory(boolean mandatory)
Set if the attendee is mandatoryvoid
setLogin(String login)
Set the login of the attendeevoid
setPopulationId(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
-
-