Package io.vertx.ext.shell.command.base
Class LocalMapPut
- java.lang.Object
-
- io.vertx.ext.shell.command.AnnotatedCommand
-
- io.vertx.ext.shell.command.base.LocalMapPut
-
public class LocalMapPut extends AnnotatedCommand
- Author:
- Julien Viet
-
-
Constructor Summary
Constructors Constructor Description LocalMapPut()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
process(CommandProcess process)
Process the command, when the command is done processing it should call theCommandProcess.end()
method.void
setKey(String key)
void
setMap(String map)
void
setValue(String value)
-
Methods inherited from class io.vertx.ext.shell.command.AnnotatedCommand
cli, complete, name
-
-
-
-
Method Detail
-
setMap
public void setMap(String map)
-
setKey
public void setKey(String key)
-
setValue
public void setValue(String value)
-
process
public void process(CommandProcess process)
Description copied from class:AnnotatedCommand
Process the command, when the command is done processing it should call theCommandProcess.end()
method.- Specified by:
process
in classAnnotatedCommand
- Parameters:
process
- the command process
-
-