Interface GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointBuilder
- Enclosing interface:
- GoogleCalendarEndpointBuilderFactory
public static interface GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Builder for endpoint producers for the Google Calendar component.
-
-
Method Summary
-
-
-
Method Detail
-
advanced
default GoogleCalendarEndpointBuilderFactory.AdvancedGoogleCalendarEndpointProducerBuilder advanced()
-
applicationName
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder applicationName(String applicationName)
Google calendar application name. Example would be camel-google-calendar/1.0. The option is a:java.lang.String
type. Group: common
-
clientId
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder clientId(String clientId)
Client ID of the calendar application. The option is a:java.lang.String
type. Group: common
-
emailAddress
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder emailAddress(String emailAddress)
The emailAddress of the Google Service Account. The option is a:java.lang.String
type. Group: common
-
inBody
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder inBody(String inBody)
Sets the name of a parameter to be passed in the exchange In Body. The option is a:java.lang.String
type. Group: common
-
p12FileName
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder p12FileName(String p12FileName)
The name of the p12 file which has the private key to use with the Google Service Account. The option is a:java.lang.String
type. Group: common
-
scopes
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder scopes(String scopes)
Specifies the level of permissions you want a calendar application to have to a user account. You can separate multiple scopes by comma. See https://developers.google.com/google-apps/calendar/auth for more info. The option is a:java.lang.String
type. Default: https://www.googleapis.com/auth/calendar Group: common
-
user
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder user(String user)
The email address of the user the application is trying to impersonate in the service account flow. The option is a:java.lang.String
type. Group: common
-
lazyStartProducer
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a:boolean
type. Default: false Group: producer
-
lazyStartProducer
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder lazyStartProducer(String lazyStartProducer)
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option will be converted to aboolean
type. Default: false Group: producer
-
accessToken
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder accessToken(String accessToken)
OAuth 2 access token. This typically expires after an hour so refreshToken is recommended for long term usage. The option is a:java.lang.String
type. Group: security
-
clientSecret
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder clientSecret(String clientSecret)
Client secret of the calendar application. The option is a:java.lang.String
type. Group: security
-
refreshToken
default GoogleCalendarEndpointBuilderFactory.GoogleCalendarEndpointProducerBuilder refreshToken(String refreshToken)
OAuth 2 refresh token. Using this, the Google Calendar component can obtain a new accessToken whenever the current one expires - a necessity if the application is long-lived. The option is a:java.lang.String
type. Group: security
-
-