use of org.pentaho.platform.engine.services.solution.SimpleParameterSetter in project pentaho-platform by pentaho.
the class ActionSequenceParameterUiContentGenerator method getPathParameters.
@SuppressWarnings("unchecked")
public IParameterProvider getPathParameters() {
// $NON-NLS-1$
IParameterProvider pathParams = this.parameterProviders.get("path");
SimpleParameterSetter parameters = new SimpleParameterSetter();
Iterator pathParamIterator = pathParams.getParameterNames();
while (pathParamIterator.hasNext()) {
String param = (String) pathParamIterator.next();
parameters.setParameter(param, pathParams.getParameter(param));
}
this.pathParameters = parameters;
return parameters;
}
Aggregations