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

com.xlrit.gears.engine.schedule.PurgeProperties Maven / Gradle / Ivy

package com.xlrit.gears.engine.schedule;

import java.time.Period;

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

import lombok.Data;

@Data
@Component
@ConfigurationProperties(prefix = "gears.purge")
public class PurgeProperties {
	private boolean enabled = false;
	private String cron;
	private Period maxAge;
	private boolean delete;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy