All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jeesuite.springboot.starter.scheduler.SchedulerProperties Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/**
 * 
 */
package com.jeesuite.springboot.starter.scheduler;

import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * @description 
* @author vakin * @date 2016年12月31日 */ @ConfigurationProperties(prefix="jeesuite.task") public class SchedulerProperties { private String registryType = "zookeeper"; private String registryServers; private String groupName; private String scanPackages; private int threadPoolSize; public String getRegistryType() { return registryType; } public void setRegistryType(String registryType) { this.registryType = registryType; } public String getRegistryServers() { return registryServers; } public void setRegistryServers(String registryServers) { this.registryServers = registryServers; } public String getGroupName() { return groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getScanPackages() { return scanPackages; } public void setScanPackages(String scanPackages) { this.scanPackages = scanPackages; } public int getThreadPoolSize() { return threadPoolSize; } public void setThreadPoolSize(int threadPoolSize) { this.threadPoolSize = threadPoolSize; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy