mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-12-22 12:57:57 +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)
|
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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue