/** * 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.cometd.springboot; import java.util.List; import javax.annotation.Generated; import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon; import org.apache.camel.util.jsse.SSLContextParameters; import org.cometd.bayeux.server.BayeuxServer.Extension; import org.cometd.bayeux.server.SecurityPolicy; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.context.properties.NestedConfigurationProperty; /** * The cometd component is a transport for working with the Jetty implementation * of the cometd/bayeux protocol. * * Generated by camel-package-maven-plugin - do not edit this file! */ @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo") @ConfigurationProperties(prefix = "camel.component.cometd") public class CometdComponentConfiguration extends ComponentConfigurationPropertiesCommon { /** * The password for the keystore when using SSL. */ private String sslKeyPassword; /** * The password when using SSL. */ private String sslPassword; /** * The path to the keystore. */ private String sslKeystore; /** * To use a custom configured SecurityPolicy to control authorization */ @NestedConfigurationProperty private SecurityPolicy securityPolicy; /** * To use a list of custom BayeuxServer.Extension that allows modifying * incoming and outgoing requests. */ private List<Extension> extensions; /** * To configure security using SSLContextParameters */ @NestedConfigurationProperty private SSLContextParameters sslContextParameters; /** * Enable usage of global SSL context parameters. */ private Boolean useGlobalSslContextParameters = false; /** * 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 String getSslKeyPassword() { return sslKeyPassword; } public void setSslKeyPassword(String sslKeyPassword) { this.sslKeyPassword = sslKeyPassword; } public String getSslPassword() { return sslPassword; } public void setSslPassword(String sslPassword) { this.sslPassword = sslPassword; } public String getSslKeystore() { return sslKeystore; } public void setSslKeystore(String sslKeystore) { this.sslKeystore = sslKeystore; } public SecurityPolicy getSecurityPolicy() { return securityPolicy; } public void setSecurityPolicy(SecurityPolicy securityPolicy) { this.securityPolicy = securityPolicy; } public List<Extension> getExtensions() { return extensions; } public void setExtensions(List<Extension> extensions) { this.extensions = extensions; } public SSLContextParameters getSslContextParameters() { return sslContextParameters; } public void setSslContextParameters( SSLContextParameters sslContextParameters) { this.sslContextParameters = sslContextParameters; } public Boolean getUseGlobalSslContextParameters() { return useGlobalSslContextParameters; } public void setUseGlobalSslContextParameters( Boolean useGlobalSslContextParameters) { this.useGlobalSslContextParameters = useGlobalSslContextParameters; } public Boolean getResolvePropertyPlaceholders() { return resolvePropertyPlaceholders; } public void setResolvePropertyPlaceholders( Boolean resolvePropertyPlaceholders) { this.resolvePropertyPlaceholders = resolvePropertyPlaceholders; } }