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

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

There is a newer version: 1.0.17
Show newest version
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";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy