Package com.google.api.services.calendar.model.Event

Examples of com.google.api.services.calendar.model.Event.ExtendedProperties


  @Override
  public void addAppointment(final AppointmentDto appointment) throws IOException {
    final Event event = new Event();
    final Map<String, String> privateProperties = new HashMap<String, String>();
    privateProperties.put(EXT_PROPERTY_EXCHANGE_ID, appointment.getExchangeId());
    final ExtendedProperties extProperties = new ExtendedProperties();
    extProperties.setPrivate(privateProperties);
    event.setExtendedProperties(extProperties);
    populateEventFromAppointmentDto(appointment, event);

    client.events().insert(calendarId, event).execute();
View Full Code Here

TOP

Related Classes of com.google.api.services.calendar.model.Event.ExtendedProperties

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.