com.github.nagyesta.filebarj.job.cli.KeyStoreProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of file-barj-job Show documentation
Show all versions of file-barj-job Show documentation
Executable Jar for easy execution of backup or restore jobs.
package com.github.nagyesta.filebarj.job.cli;
import lombok.Builder;
import lombok.Data;
import lombok.NonNull;
import java.nio.file.Path;
/**
* The parsed command line arguments of a key store generation task.
*/
@Data
@Builder
public class KeyStoreProperties {
private final @NonNull Path keyStore;
private final char[] password;
@Builder.Default
private final @NonNull String alias = "default";
}