@HandlerOutput(name="Buffer", type=String.class)})
public static void getRequestProcessingDefaultSettings(HandlerContext handlerCtx) {
ConfigConfig config = AMXUtil.getConfig(((String)handlerCtx.getInputValue("ConfigName")));
RequestProcessingConfig rp = config.getHTTPServiceConfig().getRequestProcessingConfig();
String count = rp.getDefaultValue(RequestProcessingConfigKeys.THREAD_COUNT_KEY);
String initial = rp.getDefaultValue(RequestProcessingConfigKeys.INITIAL_THREAD_COUNT_KEY);
String increment = rp.getDefaultValue(RequestProcessingConfigKeys.THREAD_INCREMENT_KEY);
String timeout = rp.getDefaultValue(RequestProcessingConfigKeys.REQUEST_TIMEOUT_IN_SECONDS_KEY);
String buffer = rp.getDefaultValue(RequestProcessingConfigKeys.HEADER_BUFFER_LENGTH_IN_BYTES_KEY);
handlerCtx.setOutputValue("Count", count);
handlerCtx.setOutputValue("Initial", initial);
handlerCtx.setOutputValue("Increment", increment);
handlerCtx.setOutputValue("Timeout", timeout);
handlerCtx.setOutputValue("Buffer", buffer);