Interface GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointBuilder
- Enclosing interface:
- GoogleDriveEndpointBuilderFactory
public static interface GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Builder for endpoint producers for the Google Drive component.
-
-
Method Summary
-
-
-
Method Detail
-
advanced
default GoogleDriveEndpointBuilderFactory.AdvancedGoogleDriveEndpointProducerBuilder advanced()
-
applicationName
default GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder applicationName(String applicationName)
Google drive application name. Example would be camel-google-drive/1.0. The option is a:java.lang.String
type. Group: common
-
clientFactory
default GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder clientFactory(Object clientFactory)
To use the GoogleCalendarClientFactory as factory for creating the client. Will by default use BatchGoogleDriveClientFactory. The option is a:org.apache.camel.component.google.drive.GoogleDriveClientFactory
type. Group: common
-
clientFactory
default GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder clientFactory(String clientFactory)
To use the GoogleCalendarClientFactory as factory for creating the client. Will by default use BatchGoogleDriveClientFactory. The option will be converted to aorg.apache.camel.component.google.drive.GoogleDriveClientFactory
type. Group: common
-
clientId
default GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder clientId(String clientId)
Client ID of the drive application. The option is a:java.lang.String
type. Group: common
-
inBody
default GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder 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
-
scopes
default GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder scopes(List<String> scopes)
Specifies the level of permissions you want a drive application to have to a user account. See https://developers.google.com/drive/web/scopes for more info. The option is a:java.util.List<java.lang.String>
type. Group: common
-
scopes
default GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder scopes(String scopes)
Specifies the level of permissions you want a drive application to have to a user account. See https://developers.google.com/drive/web/scopes for more info. The option will be converted to ajava.util.List<java.lang.String>
type. Group: common
-
lazyStartProducer
default GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder 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 GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder 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 GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder 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 GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder clientSecret(String clientSecret)
Client secret of the drive application. The option is a:java.lang.String
type. Group: security
-
refreshToken
default GoogleDriveEndpointBuilderFactory.GoogleDriveEndpointProducerBuilder 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
-
-