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

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

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

import jakarta.validation.constraints.Positive;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NonNull;
import lombok.experimental.SuperBuilder;

import java.nio.file.Path;

/**
 * The parsed command line arguments of an increment content inspection task.
 */
@Data
@SuperBuilder
@EqualsAndHashCode(callSuper = true)
public class InspectIncrementContentsProperties extends BackupFileProperties {
    private final @Positive long pointInTimeEpochSeconds;
    private final @NonNull Path outputFile;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy