Class CommandBase
java.lang.Object
org.apache.zookeeper.server.admin.CommandBase
- All Implemented Interfaces:
Command
- Direct Known Subclasses:
GetCommand
,PostCommand
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
CommandBase
(List<String> names) protected
CommandBase
(List<String> names, boolean serverRequired) protected
CommandBase
(List<String> names, boolean serverRequired, AuthRequest authRequest) -
Method Summary
Modifier and TypeMethodDescriptiongetNames()
The set of all names that can be used to refer to this command (e.g., "configuration", "config", and "conf").The name that is returned with the command response and that appears in the list of all commands.protected CommandResponse
boolean
-
Constructor Details
-
CommandBase
- Parameters:
names
- The possible names of this command, with the primary name first.
-
CommandBase
-
CommandBase
-
-
Method Details
-
getPrimaryName
Description copied from interface:Command
The name that is returned with the command response and that appears in the list of all commands. This should be a member of the set returned by getNames().- Specified by:
getPrimaryName
in interfaceCommand
-
getNames
Description copied from interface:Command
The set of all names that can be used to refer to this command (e.g., "configuration", "config", and "conf"). -
isServerRequired
public boolean isServerRequired()- Specified by:
isServerRequired
in interfaceCommand
- Returns:
- true if the command requires an active ZooKeeperServer or a synced peer in order to resolve
-
getAuthRequest
- Specified by:
getAuthRequest
in interfaceCommand
- Returns:
- AuthRequest associated to the command. Null means auth check is not required.
-
initializeResponse
- Returns:
- A response with the command set to the primary name and the error set to null (these are the two entries that all command responses are required to include).
-