mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-12-22 04:57:56 +01:00
Add missing parameter labels
This commit is contained in:
parent
d1c614344c
commit
f13aade98e
2 changed files with 5 additions and 3 deletions
|
@ -22,10 +22,12 @@ public class ChangeKeyPasswordCmd extends AbstractSopCmd {
|
|||
negatable = true)
|
||||
boolean armor = true;
|
||||
|
||||
@CommandLine.Option(names = {"--old-key-password"})
|
||||
@CommandLine.Option(names = {"--old-key-password"},
|
||||
paramLabel = "PASSWORD")
|
||||
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;
|
||||
|
||||
@Override
|
||||
|
|
|
@ -35,7 +35,7 @@ public class InlineVerifyCmd extends AbstractSopCmd {
|
|||
paramLabel = "DATE")
|
||||
String notAfter = "now";
|
||||
|
||||
@CommandLine.Option(names = "--verifications-out")
|
||||
@CommandLine.Option(names = "--verifications-out", paramLabel = "VERIFICATIONS")
|
||||
String verificationsOut;
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue