Tabnine Logo
Event.getSummary
Code IndexAdd Tabnine to your IDE (free)

How to use
getSummary
method
in
com.google.api.services.calendar.model.Event

Best Java code snippets using com.google.api.services.calendar.model.Event.getSummary (Showing top 13 results out of 315)

origin: google/data-transfer-project

private static CalendarEventModel convertToCalendarEventModel(String id, Event eventData) {
 List<EventAttendee> attendees = eventData.getAttendees();
 List<String> recurrenceRulesStrings = eventData.getRecurrence();
 return new CalendarEventModel(
   id,
   eventData.getDescription(),
   eventData.getSummary(),
   attendees == null
     ? null
     : attendees
       .stream()
       .map(GoogleCalendarExporter::transformToModelAttendee)
       .collect(Collectors.toList()),
   eventData.getLocation(),
   getEventTime(eventData.getStart()),
   getEventTime(eventData.getEnd()),
   recurrenceRulesStrings == null ? null : getRecurrenceRule(recurrenceRulesStrings));
}
origin: synyx/urlaubsverwaltung

@Override
public Optional<String> add(Absence absence, CalendarSettings calendarSettings) {
  googleCalendarClient = getOrCreateGoogleCalendarClient();
  if (googleCalendarClient != null) {
    GoogleCalendarSettings googleCalendarSettings =
        settingsService.getSettings().getCalendarSettings().getGoogleCalendarSettings();
    String calendarId = googleCalendarSettings.getCalendarId();
    try {
      Event eventToCommit = new Event();
      fillEvent(absence, eventToCommit);
      Event eventInCalendar = googleCalendarClient.events().insert(calendarId, eventToCommit).execute();
      LOG.info(String.format("Event %s for '%s' added to calendar '%s'.", eventInCalendar.getId(),
          absence.getPerson().getNiceName(), eventInCalendar.getSummary()));
      return Optional.of(eventInCalendar.getId());
    } catch (IOException ex) {
      LOG.warn(String.format("An error occurred while trying to add appointment to calendar %s", calendarId), ex);
      mailService.sendCalendarSyncErrorNotification(calendarId, absence, ex.toString());
    }
  }
  return Optional.empty();
}
origin: io.syndesis.connector/connector-google-calendar

if (event != null) {
  if (ObjectHelper.isNotEmpty(event.getSummary())) {
    model.setTitle(event.getSummary());
origin: io.syndesis.connector/connector-google-calendar

if (event != null) {
  if (ObjectHelper.isNotEmpty(event.getSummary())) {
    model.setTitle(event.getSummary());
origin: io.syndesis.connector/connector-google-calendar

if (event != null) {
  if (ObjectHelper.isNotEmpty(event.getSummary())) {
    model.setTitle(event.getSummary());
origin: io.syndesis.connector/connector-google-calendar

if (event != null) {
  if (ObjectHelper.isNotEmpty(event.getSummary())) {
    model.setTitle(event.getSummary());
origin: NovaFox161/DisCal-Discord-Bot

jo.put("epochEnd", e.getEnd().getDateTime().getValue());
jo.put("timezone", tz);
jo.put("summary", e.getSummary());
jo.put("description", e.getDescription());
if (e.getLocked() != null)
origin: NovaFox161/DisCal-Discord-Bot

jo.put("epochEnd", e.getEnd().getDateTime().getValue());
jo.put("timezone", tz);
jo.put("summary", e.getSummary());
jo.put("description", e.getDescription());
if (e.getLocked() != null)
origin: gsuitedevs/java-samples

  public static void main(String... args) throws IOException, GeneralSecurityException {
    // Build a new authorized API client service.
    final NetHttpTransport HTTP_TRANSPORT = GoogleNetHttpTransport.newTrustedTransport();
    Calendar service = new Calendar.Builder(HTTP_TRANSPORT, JSON_FACTORY, getCredentials(HTTP_TRANSPORT))
        .setApplicationName(APPLICATION_NAME)
        .build();

    // List the next 10 events from the primary calendar.
    DateTime now = new DateTime(System.currentTimeMillis());
    Events events = service.events().list("primary")
        .setMaxResults(10)
        .setTimeMin(now)
        .setOrderBy("startTime")
        .setSingleEvents(true)
        .execute();
    List<Event> items = events.getItems();
    if (items.isEmpty()) {
      System.out.println("No upcoming events found.");
    } else {
      System.out.println("Upcoming events");
      for (Event event : items) {
        DateTime start = event.getStart().getDateTime();
        if (start == null) {
          start = event.getStart().getDate();
        }
        System.out.printf("%s (%s)\n", event.getSummary(), start);
      }
    }
  }
}
origin: NovaFox161/DisCal-Discord-Bot

jo.put("epochEnd", e.getEnd().getDateTime().getValue());
jo.put("timezone", tz);
jo.put("summary", e.getSummary());
jo.put("description", e.getDescription());
if (e.getLocked() != null)
origin: NovaFox161/DisCal-Discord-Bot

  public static PreEvent copyEvent(long guildId, Event event) {
    PreEvent pe = new PreEvent(guildId);
    pe.setSummary(event.getSummary());
    pe.setDescription(event.getDescription());
    pe.setLocation(event.getLocation());
    if (event.getColorId() != null)
      pe.setColor(EventColor.fromNameOrHexOrID(event.getColorId()));
    else
      pe.setColor(EventColor.RED);

    pe.setEventData(DatabaseManager.getManager().getEventData(guildId, event.getId()));

    return pe;
  }
}
origin: gdenning/exchange-sync

result.setSummary(event.getSummary());
result.setDescription(event.getDescription());
result.setStart(convertToJodaDateTime(event.getStart()));
origin: NovaFox161/DisCal-Discord-Bot

if (e.getSummary() != null)
  summary = e.getSummary();
com.google.api.services.calendar.modelEventgetSummary

Popular methods of Event

  • <init>
  • getStart
  • getEnd
  • getId
  • setEnd
  • setStart
  • setSummary
  • getDescription
  • getLocation
  • setDescription
  • setLocation
  • getRecurrence
  • setLocation,
  • getRecurrence,
  • getColorId,
  • setAttendees,
  • setRecurrence,
  • getAttendees,
  • getLocked,
  • setColorId,
  • setId

Popular in Java

  • Finding current android device location
  • findViewById (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSupportFragmentManager (FragmentActivity)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now