blob: 36509be6a91f50e049eb9b97637cc5825fec8b00 [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.quartz.springboot;
import java.util.Properties;
import org.quartz.Scheduler;
import org.quartz.SchedulerFactory;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
/**
* Provides a scheduled delivery of messages using the Quartz 1.x scheduler.
*
* Generated by camel-package-maven-plugin - do not edit this file!
*/
@ConfigurationProperties(prefix = "camel.component.quartz")
public class QuartzComponentConfiguration {
/**
* To use the custom SchedulerFactory which is used to create the Scheduler.
*/
@NestedConfigurationProperty
private SchedulerFactory factory;
/**
* To use the custom configured Quartz scheduler instead of creating a new
* Scheduler.
*/
@NestedConfigurationProperty
private Scheduler scheduler;
/**
* Properties to configure the Quartz scheduler.
*/
private Properties properties;
/**
* File name of the properties to load from the classpath
*/
private String propertiesFile;
/**
* Seconds to wait before starting the quartz scheduler.
*/
private Integer startDelayedSeconds;
/**
* Whether or not the scheduler should be auto started. This options is
* default true
*/
private Boolean autoStartScheduler;
/**
* Whether to enable Quartz JMX which allows to manage the Quartz scheduler
* from JMX. This options is default true
*/
private Boolean enableJmx;
public SchedulerFactory getFactory() {
return factory;
}
public void setFactory(SchedulerFactory factory) {
this.factory = factory;
}
public Scheduler getScheduler() {
return scheduler;
}
public void setScheduler(Scheduler scheduler) {
this.scheduler = scheduler;
}
public Properties getProperties() {
return properties;
}
public void setProperties(Properties properties) {
this.properties = properties;
}
public String getPropertiesFile() {
return propertiesFile;
}
public void setPropertiesFile(String propertiesFile) {
this.propertiesFile = propertiesFile;
}
public Integer getStartDelayedSeconds() {
return startDelayedSeconds;
}
public void setStartDelayedSeconds(Integer startDelayedSeconds) {
this.startDelayedSeconds = startDelayedSeconds;
}
public Boolean getAutoStartScheduler() {
return autoStartScheduler;
}
public void setAutoStartScheduler(Boolean autoStartScheduler) {
this.autoStartScheduler = autoStartScheduler;
}
public Boolean getEnableJmx() {
return enableJmx;
}
public void setEnableJmx(Boolean enableJmx) {
this.enableJmx = enableJmx;
}
}