Parses and executes the input string. @param command base URI (name) and command string (value) @return false if the exit command was sent @throws IOException database exception
(final Entry<String, String> command)
| 64 | * @throws IOException database exception |
| 65 | */ |
| 66 | protected final boolean execute(final Entry<String, String> command) throws IOException { |
| 67 | final CommandParser cp = CommandParser.get(command.getValue(), context); |
| 68 | return execute(cp.path(command.getKey()).pwReader(PWREADER)); |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Execute the commands from the given command parser. |
nothing calls this directly
no test coverage detected