#include <BESDeleteCommand.h>
Inheritance diagram for BESDeleteCommand:
Public Member Functions | |
BESDeleteCommand (const string &cmd) | |
virtual | ~BESDeleteCommand () |
virtual BESResponseHandler * | parse_request (BESTokenizer &tokens, BESDataHandlerInterface &dhi) |
parses the request to delete something | |
virtual void | dump (ostream &strm) const |
dumps information about this object | |
virtual string | parse_options (BESTokenizer &tokens, BESDataHandlerInterface &dhi) |
Static Public Member Functions | |
static void | add_command (const string &cmd_str, BESCommand *cmd) |
static bool | del_command (const string &cmd_str) |
static BESCommand * | find_command (const string &cmd_str) |
Static Public Attributes | |
static BESCommand * | TermCommand = new BESTermCommand( "term" ) |
Protected Attributes | |
string | _cmd |
|
|
|
|
|
|
|
|
|
dumps information about this object Displays the pointer value of this instance
Reimplemented from BESCommand. |
|
|
|
Reimplemented in BESDefineCommand, and BESSetCommand. |
|
parses the request to delete something This command requires a sub command to complete the parsing of the command. You can not just have a command to delete. For example, the command 'delete container <container_name>;' looks for a sub command with the name 'delete.container' to complete parsing the command. And remember to terminate all commands with a semicolon (;)
Implements BESCommand. |
|
|
|
|