mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-12-22 21:07:57 +01:00
Reorder subcommands
This commit is contained in:
parent
009364b217
commit
feb9efc733
1 changed files with 16 additions and 11 deletions
|
@ -32,22 +32,27 @@ import java.util.ResourceBundle;
|
||||||
resourceBundle = "msg_sop",
|
resourceBundle = "msg_sop",
|
||||||
exitCodeOnInvalidInput = 69,
|
exitCodeOnInvalidInput = 69,
|
||||||
subcommands = {
|
subcommands = {
|
||||||
CommandLine.HelpCommand.class,
|
// Meta Subcommands
|
||||||
ArmorCmd.class,
|
VersionCmd.class,
|
||||||
DearmorCmd.class,
|
ListProfilesCmd.class,
|
||||||
DecryptCmd.class,
|
// Key and Certificate Management Subcommands
|
||||||
InlineDetachCmd.class,
|
|
||||||
EncryptCmd.class,
|
|
||||||
ExtractCertCmd.class,
|
|
||||||
GenerateKeyCmd.class,
|
GenerateKeyCmd.class,
|
||||||
|
ChangeKeyPasswordCmd.class,
|
||||||
|
RevokeKeyCmd.class,
|
||||||
|
ExtractCertCmd.class,
|
||||||
|
// Messaging Subcommands
|
||||||
SignCmd.class,
|
SignCmd.class,
|
||||||
VerifyCmd.class,
|
VerifyCmd.class,
|
||||||
|
EncryptCmd.class,
|
||||||
|
DecryptCmd.class,
|
||||||
|
InlineDetachCmd.class,
|
||||||
InlineSignCmd.class,
|
InlineSignCmd.class,
|
||||||
InlineVerifyCmd.class,
|
InlineVerifyCmd.class,
|
||||||
ListProfilesCmd.class,
|
// Transport Subcommands
|
||||||
RevokeKeyCmd.class,
|
ArmorCmd.class,
|
||||||
ChangeKeyPasswordCmd.class,
|
DearmorCmd.class,
|
||||||
VersionCmd.class,
|
// Miscellaneous Subcommands
|
||||||
|
CommandLine.HelpCommand.class,
|
||||||
AutoComplete.GenerateCompletion.class
|
AutoComplete.GenerateCompletion.class
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue