// Otherwise report that operation is not supported.
if (underlyingOperation == null) {
return Result.UNSUPPORTED;
}
ParamBuilder builder = new ParamBuilder();
// We operate on mutable parameteres
builder.overlayEnvironmentParameters(
descriptor.getInputParameters(), envParams);
return underlyingOperation.execute(descriptor, request, response);
}