in src/main/java/org/apache/sling/pipes/internal/CommandExecutorImpl.java [429:448]
void writeToBuilder(PipeBuilder builder) throws IllegalAccessException {
if (StringUtils.isNotBlank(name)){
builder.name(name);
}
if (StringUtils.isNotBlank(path)){
builder.path(path);
}
if (StringUtils.isNotBlank(expr)){
builder.expr(expr);
}
if (with != null){
builder.with(with);
}
if (bindings != null){
builder.bindings(bindings);
}
if (outputs != null) {
builder.outputs(outputs);
}
}