Class CommandResponse
- java.lang.Object
-
- org.apache.zookeeper.server.admin.CommandResponse
-
-
Constructor Summary
Constructors Constructor Description CommandResponse(String command)
Creates a new response with no error string.CommandResponse(String command, String error)
Creates a new response.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCommand()
Gets the command name.String
getError()
Gets the error string (may be null).Object
put(String key, Object value)
Adds a key/value pair to this response.void
putAll(Map<? extends String,?> m)
Adds all key/value pairs in the given map to this response.Map<String,Object>
toMap()
Converts this response to a map.
-
-
-
Field Detail
-
KEY_COMMAND
public static final String KEY_COMMAND
The key in the map returned bytoMap()
for the command name.- See Also:
- Constant Field Values
-
KEY_ERROR
public static final String KEY_ERROR
The key in the map returned bytoMap()
for the error string.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CommandResponse
public CommandResponse(String command)
Creates a new response with no error string.- Parameters:
command
- command name
-
-
Method Detail
-
getCommand
public String getCommand()
Gets the command name.- Returns:
- command name
-
getError
public String getError()
Gets the error string (may be null).- Returns:
- error string
-
put
public Object put(String key, Object value)
Adds a key/value pair to this response.- Parameters:
key
- keyvalue
- value- Returns:
- prior value for key, or null if none
-
putAll
public void putAll(Map<? extends String,?> m)
Adds all key/value pairs in the given map to this response.- Parameters:
m
- map of key/value pairs
-
-