com.swak.archiver.conf.ArchiverProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swak-datarchiver-boot-starter Show documentation
Show all versions of swak-datarchiver-boot-starter Show documentation
swak component of data archiver spring boot starter
The newest version!
package com.swak.archiver.conf;
import com.swak.archiver.notify.ArchiveMonitor;
import com.swak.common.dto.base.DTO;
import lombok.Data;
import javax.sql.DataSource;
@Data
public class ArchiverProperties implements DTO {
private DataSource mysqlDataSource;
private DataSource clickhouseDataSource;
private ArchiveMonitor monitor;
}