Add the ability to "hide" commands.

This does not yet change how commands are treated, but allows for this to be implemented in the future.
This commit is contained in:
Alexander Söderberg 2020-09-25 02:31:20 +02:00
parent c980adac3b
commit 64fa3430a9
No known key found for this signature in database
GPG key ID: C0207FF7EA146678
5 changed files with 82 additions and 2 deletions

View file

@ -44,4 +44,11 @@ public @interface ProxiedBy {
*/
@Nonnull String value();
/**
* Whether or not the proxying command should be {@link Hidden}
*
* @return {@code true} if the proxying command should be hidden, {@code false} if not
*/
boolean hidden() default false;
}