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

com.github.nagyesta.filebarj.job.cli.MergeProperties Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
package com.github.nagyesta.filebarj.job.cli;

import com.github.nagyesta.filebarj.core.validation.PastOrPresentEpochSeconds;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.SuperBuilder;

/**
 * The parsed command line arguments of a merge task.
 */
@Data
@SuperBuilder
@EqualsAndHashCode(callSuper = true)
public class MergeProperties extends BackupFileProperties {
    private final boolean deleteObsoleteFiles;
    @PastOrPresentEpochSeconds
    private final long fromTimeEpochSeconds;
    @PastOrPresentEpochSeconds
    private final long toTimeEpochSeconds;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy