deployer/service/src/main/java/org/apache/karaf/cave/deployer/service/command/ConfigPropertyAppendCommand.java [32:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Reference
    private DeployerService deployer;

    @Argument(index = 0, name = "connection", description = "The connection to use", required = true, multiValued = false)
    @Completion(ConnectionCompleter.class)
    String connection;

    @Argument(index = 1, name = "pid", description = "The configuration PID", required = true, multiValued = false)
    String pid;

    @Argument(index = 2, name = "key", description = "The configuration property key", required = true, multiValued = false)
    String key;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



deployer/service/src/main/java/org/apache/karaf/cave/deployer/service/command/ConfigPropertySetCommand.java [32:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Reference
    private DeployerService deployer;

    @Argument(index = 0, name = "connection", description = "The connection to use", required = true, multiValued = false)
    @Completion(ConnectionCompleter.class)
    String connection;

    @Argument(index = 1, name = "pid", description = "The configuration PID", required = true, multiValued = false)
    String pid;

    @Argument(index = 2, name = "key", description = "The configuration property key", required = true, multiValued = false)
    String key;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



