All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.component.google.calendar.CalendarCalendarsEndpointConfiguration Maven / Gradle / Ivy

There is a newer version: 4.8.0
Show newest version
/*
 * Camel EndpointConfiguration generated by camel-api-component-maven-plugin
 * Generated on: Sun Mar 25 17:00:40 UTC 2018
 */
package org.apache.camel.component.google.calendar;

import org.apache.camel.spi.UriParam;
import org.apache.camel.spi.UriParams;

/**
 * Camel EndpointConfiguration for com.google.api.services.calendar.Calendar$Calendars
 */
@UriParams
public final class CalendarCalendarsEndpointConfiguration extends GoogleCalendarConfiguration {

    @UriParam
    private String calendarId;

    @UriParam
    private com.google.api.services.calendar.model.Calendar content;

    public String getCalendarId() {
        return calendarId;
    }

    public void setCalendarId(String calendarId) {
        this.calendarId = calendarId;
    }

    public com.google.api.services.calendar.model.Calendar getContent() {
        return content;
    }

    public void setContent(com.google.api.services.calendar.model.Calendar content) {
        this.content = content;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy