Interface UpdateEventBuilder
-
- All Superinterfaces:
QueryBuilder<UpdateEventBuilder,Object>,UriQueryBuilder<UpdateEventBuilder,Object>
- All Known Implementing Classes:
UpdateEventBuilderImpl
public interface UpdateEventBuilder extends UriQueryBuilder<UpdateEventBuilder,Object>
Interface for constructing queries for updating a existing event in a calendar, following the builder pattern.(Currently only used internally within
CalendarOperations.updateEvent(java.lang.String, org.springframework.social.google.api.calendar.Event, boolean).)- Author:
- Martin Wink
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateEventBuilderalwaysIncludeEmail(boolean alwaysIncludeEmail)UpdateEventBuildermaxAttendees(int maxAttendees)UpdateEventBuildersendNotifications(boolean sendNotifications)-
Methods inherited from interface org.springframework.social.google.api.query.QueryBuilder
maxResultsNumber
-
Methods inherited from interface org.springframework.social.google.api.calendar.UriQueryBuilder
buildUri
-
-
-
-
Method Detail
-
alwaysIncludeEmail
UpdateEventBuilder alwaysIncludeEmail(boolean alwaysIncludeEmail)
-
maxAttendees
UpdateEventBuilder maxAttendees(int maxAttendees)
-
sendNotifications
UpdateEventBuilder sendNotifications(boolean sendNotifications)
-
-