Class ServerJavacord
- java.lang.Object
-
- net.kautler.command.api.restriction.javacord.ServerJavacord
-
- All Implemented Interfaces:
Restriction<Message>
public abstract class ServerJavacord extends Object implements Restriction<Message>
A restriction that allows a command in certain servers and is evaluated by the Javacord command handler. To use it, create a trivial subclass of this class and make it a discoverable CDI bean, for example by annotating it with@ApplicationScoped
.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ServerJavacord(long serverId)
Constructs a new server restriction for checking the server ID.protected
ServerJavacord(String serverName)
Constructs a new server restriction for checking the server name case-sensitively against a fixed name.protected
ServerJavacord(String serverName, boolean caseSensitive)
Constructs a new server restriction for checking the server name against a fixed name.protected
ServerJavacord(Pattern serverPattern)
Constructs a new server restriction for checking the server name against a regular expression.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
allowCommand(CommandContext<? extends Message> commandContext)
Returns whether a command caused by the given command context should be allowed by this restriction or not.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.kautler.command.api.restriction.Restriction
getRealClass
-
-
-
-
Constructor Detail
-
ServerJavacord
protected ServerJavacord(long serverId)
Constructs a new server restriction for checking the server ID.- Parameters:
serverId
- the ID of the server where a command should be allowed
-
ServerJavacord
protected ServerJavacord(String serverName)
Constructs a new server restriction for checking the server name case-sensitively against a fixed name.- Parameters:
serverName
- the case-sensitive name of the server where a command should be allowed
-
ServerJavacord
protected ServerJavacord(String serverName, boolean caseSensitive)
Constructs a new server restriction for checking the server name against a fixed name.- Parameters:
serverName
- the name of the server where a command should be allowedcaseSensitive
- whether the name should be matched case-sensitively or not
-
ServerJavacord
protected ServerJavacord(Pattern serverPattern)
Constructs a new server restriction for checking the server name against a regular expression.- Parameters:
serverPattern
- the pattern against which the server name is matched to determine where a command should be allowed
-
-
Method Detail
-
allowCommand
public boolean allowCommand(CommandContext<? extends Message> commandContext)
Description copied from interface:Restriction
Returns whether a command caused by the given command context should be allowed by this restriction or not.- Specified by:
allowCommand
in interfaceRestriction<Message>
- Parameters:
commandContext
- the command context, usually fully populated- Returns:
- whether a command caused by the given command context should be allowed by this restriction or not
-
-