this.runtimeModelBuilder = runtimeModelBuilder;
this.locatorModel = locatorModel;
this.valueProviders = ParameterValueHelper.createValueProviders(locator, locatorModel.getInvocable());
this.resourceContext = locator.getService(JerseyResourceContext.class);
final Configuration config = locator.getService(Configuration.class);
this.disableValidation = PropertiesHelper.getValue(config.getProperties(),
ServerProperties.RESOURCE_VALIDATION_DISABLE,
Boolean.FALSE,
Boolean.class);
this.ignoreValidationErrors = PropertiesHelper.getValue(config.getProperties(),
ServerProperties.RESOURCE_VALIDATION_IGNORE_ERRORS,
Boolean.FALSE,
Boolean.class);
}