org.apache.camel.component.google.calendar.CalendarCalendarsEndpointConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-google-calendar Show documentation
Show all versions of camel-google-calendar Show documentation
Camel Component for GoogleCalendar
/*
* 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;
}
}