Add missing parameter labels

This commit is contained in:
Paul Schaub 2023-07-12 14:15:47 +02:00
parent d1c614344c
commit f13aade98e
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
2 changed files with 5 additions and 3 deletions

View File

@ -22,10 +22,12 @@ public class ChangeKeyPasswordCmd extends AbstractSopCmd {
negatable = true) negatable = true)
boolean armor = true; boolean armor = true;
@CommandLine.Option(names = {"--old-key-password"}) @CommandLine.Option(names = {"--old-key-password"},
paramLabel = "PASSWORD")
List<String> oldKeyPasswords = new ArrayList<>(); List<String> oldKeyPasswords = new ArrayList<>();
@CommandLine.Option(names = {"--new-key-password"}, arity = "0..1") @CommandLine.Option(names = {"--new-key-password"}, arity = "0..1",
paramLabel = "PASSWORD")
String newKeyPassword = null; String newKeyPassword = null;
@Override @Override

View File

@ -35,7 +35,7 @@ public class InlineVerifyCmd extends AbstractSopCmd {
paramLabel = "DATE") paramLabel = "DATE")
String notAfter = "now"; String notAfter = "now";
@CommandLine.Option(names = "--verifications-out") @CommandLine.Option(names = "--verifications-out", paramLabel = "VERIFICATIONS")
String verificationsOut; String verificationsOut;
@Override @Override