org.apache.camel.component.google.sheets.SheetsSpreadsheetsEndpointConfigurationConfigurer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-google-sheets Show documentation
Show all versions of camel-google-sheets Show documentation
Camel Component for Google Sheets
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.google.sheets;
import java.util.Map;
import org.apache.camel.CamelContext;
import org.apache.camel.spi.ExtendedPropertyConfigurerGetter;
import org.apache.camel.spi.PropertyConfigurerGetter;
import org.apache.camel.spi.ConfigurerStrategy;
import org.apache.camel.spi.GeneratedPropertyConfigurer;
import org.apache.camel.util.CaseInsensitiveMap;
import org.apache.camel.component.google.sheets.SheetsSpreadsheetsEndpointConfiguration;
/**
* Generated by camel build tools - do NOT edit this file!
*/
@SuppressWarnings("unchecked")
public class SheetsSpreadsheetsEndpointConfigurationConfigurer extends org.apache.camel.support.component.PropertyConfigurerSupport implements GeneratedPropertyConfigurer, ExtendedPropertyConfigurerGetter {
private static final Map ALL_OPTIONS;
static {
Map map = new CaseInsensitiveMap();
map.put("AccessToken", java.lang.String.class);
map.put("ApiName", org.apache.camel.component.google.sheets.internal.GoogleSheetsApiName.class);
map.put("ApplicationName", java.lang.String.class);
map.put("BatchUpdateSpreadsheetRequest", com.google.api.services.sheets.v4.model.BatchUpdateSpreadsheetRequest.class);
map.put("ClientId", java.lang.String.class);
map.put("ClientSecret", java.lang.String.class);
map.put("Content", com.google.api.services.sheets.v4.model.Spreadsheet.class);
map.put("Delegate", java.lang.String.class);
map.put("GetSpreadsheetByDataFilterRequest", com.google.api.services.sheets.v4.model.GetSpreadsheetByDataFilterRequest.class);
map.put("MethodName", java.lang.String.class);
map.put("RefreshToken", java.lang.String.class);
map.put("Scopes", java.util.Collection.class);
map.put("ServiceAccountKey", java.lang.String.class);
map.put("SplitResult", boolean.class);
map.put("SpreadsheetId", java.lang.String.class);
ALL_OPTIONS = map;
}
@Override
public boolean configure(CamelContext camelContext, Object obj, String name, Object value, boolean ignoreCase) {
org.apache.camel.component.google.sheets.SheetsSpreadsheetsEndpointConfiguration target = (org.apache.camel.component.google.sheets.SheetsSpreadsheetsEndpointConfiguration) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "accesstoken":
case "AccessToken": target.setAccessToken(property(camelContext, java.lang.String.class, value)); return true;
case "apiname":
case "ApiName": target.setApiName(property(camelContext, org.apache.camel.component.google.sheets.internal.GoogleSheetsApiName.class, value)); return true;
case "applicationname":
case "ApplicationName": target.setApplicationName(property(camelContext, java.lang.String.class, value)); return true;
case "batchupdatespreadsheetrequest":
case "BatchUpdateSpreadsheetRequest": target.setBatchUpdateSpreadsheetRequest(property(camelContext, com.google.api.services.sheets.v4.model.BatchUpdateSpreadsheetRequest.class, value)); return true;
case "clientid":
case "ClientId": target.setClientId(property(camelContext, java.lang.String.class, value)); return true;
case "clientsecret":
case "ClientSecret": target.setClientSecret(property(camelContext, java.lang.String.class, value)); return true;
case "content":
case "Content": target.setContent(property(camelContext, com.google.api.services.sheets.v4.model.Spreadsheet.class, value)); return true;
case "delegate":
case "Delegate": target.setDelegate(property(camelContext, java.lang.String.class, value)); return true;
case "getspreadsheetbydatafilterrequest":
case "GetSpreadsheetByDataFilterRequest": target.setGetSpreadsheetByDataFilterRequest(property(camelContext, com.google.api.services.sheets.v4.model.GetSpreadsheetByDataFilterRequest.class, value)); return true;
case "methodname":
case "MethodName": target.setMethodName(property(camelContext, java.lang.String.class, value)); return true;
case "refreshtoken":
case "RefreshToken": target.setRefreshToken(property(camelContext, java.lang.String.class, value)); return true;
case "scopes":
case "Scopes": target.setScopes(property(camelContext, java.util.Collection.class, value)); return true;
case "serviceaccountkey":
case "ServiceAccountKey": target.setServiceAccountKey(property(camelContext, java.lang.String.class, value)); return true;
case "splitresult":
case "SplitResult": target.setSplitResult(property(camelContext, boolean.class, value)); return true;
case "spreadsheetid":
case "SpreadsheetId": target.setSpreadsheetId(property(camelContext, java.lang.String.class, value)); return true;
default: return false;
}
}
@Override
public Map getAllOptions(Object target) {
return ALL_OPTIONS;
}
@Override
public Class> getOptionType(String name, boolean ignoreCase) {
switch (ignoreCase ? name.toLowerCase() : name) {
case "accesstoken":
case "AccessToken": return java.lang.String.class;
case "apiname":
case "ApiName": return org.apache.camel.component.google.sheets.internal.GoogleSheetsApiName.class;
case "applicationname":
case "ApplicationName": return java.lang.String.class;
case "batchupdatespreadsheetrequest":
case "BatchUpdateSpreadsheetRequest": return com.google.api.services.sheets.v4.model.BatchUpdateSpreadsheetRequest.class;
case "clientid":
case "ClientId": return java.lang.String.class;
case "clientsecret":
case "ClientSecret": return java.lang.String.class;
case "content":
case "Content": return com.google.api.services.sheets.v4.model.Spreadsheet.class;
case "delegate":
case "Delegate": return java.lang.String.class;
case "getspreadsheetbydatafilterrequest":
case "GetSpreadsheetByDataFilterRequest": return com.google.api.services.sheets.v4.model.GetSpreadsheetByDataFilterRequest.class;
case "methodname":
case "MethodName": return java.lang.String.class;
case "refreshtoken":
case "RefreshToken": return java.lang.String.class;
case "scopes":
case "Scopes": return java.util.Collection.class;
case "serviceaccountkey":
case "ServiceAccountKey": return java.lang.String.class;
case "splitresult":
case "SplitResult": return boolean.class;
case "spreadsheetid":
case "SpreadsheetId": return java.lang.String.class;
default: return null;
}
}
@Override
public Object getOptionValue(Object obj, String name, boolean ignoreCase) {
org.apache.camel.component.google.sheets.SheetsSpreadsheetsEndpointConfiguration target = (org.apache.camel.component.google.sheets.SheetsSpreadsheetsEndpointConfiguration) obj;
switch (ignoreCase ? name.toLowerCase() : name) {
case "accesstoken":
case "AccessToken": return target.getAccessToken();
case "apiname":
case "ApiName": return target.getApiName();
case "applicationname":
case "ApplicationName": return target.getApplicationName();
case "batchupdatespreadsheetrequest":
case "BatchUpdateSpreadsheetRequest": return target.getBatchUpdateSpreadsheetRequest();
case "clientid":
case "ClientId": return target.getClientId();
case "clientsecret":
case "ClientSecret": return target.getClientSecret();
case "content":
case "Content": return target.getContent();
case "delegate":
case "Delegate": return target.getDelegate();
case "getspreadsheetbydatafilterrequest":
case "GetSpreadsheetByDataFilterRequest": return target.getGetSpreadsheetByDataFilterRequest();
case "methodname":
case "MethodName": return target.getMethodName();
case "refreshtoken":
case "RefreshToken": return target.getRefreshToken();
case "scopes":
case "Scopes": return target.getScopes();
case "serviceaccountkey":
case "ServiceAccountKey": return target.getServiceAccountKey();
case "splitresult":
case "SplitResult": return target.isSplitResult();
case "spreadsheetid":
case "SpreadsheetId": return target.getSpreadsheetId();
default: return null;
}
}
@Override
public Object getCollectionValueType(Object target, String name, boolean ignoreCase) {
switch (ignoreCase ? name.toLowerCase() : name) {
case "scopes":
case "Scopes": return java.lang.String.class;
default: return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy