blob: b7723dbe37adf0fd4f4490b94d3420d80d85dab8 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.google.mail.springboot;
import javax.annotation.Generated;
import org.apache.camel.component.google.mail.internal.GoogleMailApiName;
import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* The google-mail component provides access to Google Mail.
*
* Generated by camel-package-maven-plugin - do not edit this file!
*/
@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
@ConfigurationProperties(prefix = "camel.component.google-mail")
public class GoogleMailComponentConfiguration
extends
ComponentConfigurationPropertiesCommon {
/**
* Whether to enable auto configuration of the google-mail component. This
* is enabled by default.
*/
private Boolean enabled;
/**
* To use the shared configuration
*/
private GoogleMailConfigurationNestedConfiguration configuration;
/**
* To use the GoogleCalendarClientFactory as factory for creating the
* client. Will by default use BatchGoogleMailClientFactory. The option is a
* org.apache.camel.component.google.mail.GoogleMailClientFactory type.
*/
private String clientFactory;
/**
* Whether the component should resolve property placeholders on itself when
* starting. Only properties which are of String type can use property
* placeholders.
*/
private Boolean resolvePropertyPlaceholders = true;
public GoogleMailConfigurationNestedConfiguration getConfiguration() {
return configuration;
}
public void setConfiguration(
GoogleMailConfigurationNestedConfiguration configuration) {
this.configuration = configuration;
}
public String getClientFactory() {
return clientFactory;
}
public void setClientFactory(String clientFactory) {
this.clientFactory = clientFactory;
}
public Boolean getResolvePropertyPlaceholders() {
return resolvePropertyPlaceholders;
}
public void setResolvePropertyPlaceholders(
Boolean resolvePropertyPlaceholders) {
this.resolvePropertyPlaceholders = resolvePropertyPlaceholders;
}
public static class GoogleMailConfigurationNestedConfiguration {
public static final Class CAMEL_NESTED_CLASS = org.apache.camel.component.google.mail.GoogleMailConfiguration.class;
/**
* What kind of operation to perform
*/
private GoogleMailApiName apiName;
/**
* What sub operation to use for the selected operation
*/
private String methodName;
/**
* Client ID of the mail application
*/
private String clientId;
/**
* Client secret of the mail application
*/
private String clientSecret;
/**
* OAuth 2 access token. This typically expires after an hour so
* refreshToken is recommended for long term usage.
*/
private String accessToken;
/**
* 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.
*/
private String refreshToken;
/**
* Google mail application name. Example would be camel-google-mail/1.0
*/
private String applicationName;
public GoogleMailApiName getApiName() {
return apiName;
}
public void setApiName(GoogleMailApiName apiName) {
this.apiName = apiName;
}
public String getMethodName() {
return methodName;
}
public void setMethodName(String methodName) {
this.methodName = methodName;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getClientSecret() {
return clientSecret;
}
public void setClientSecret(String clientSecret) {
this.clientSecret = clientSecret;
}
public String getAccessToken() {
return accessToken;
}
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
public String getRefreshToken() {
return refreshToken;
}
public void setRefreshToken(String refreshToken) {
this.refreshToken = refreshToken;
}
public String getApplicationName() {
return applicationName;
}
public void setApplicationName(String applicationName) {
this.applicationName = applicationName;
}
}
}