@HandlerOutput(name="Timeout", type=String.class)})
public static void getKeepAliveDefaultSettings(HandlerContext handlerCtx) {
ConfigConfig config = AMXUtil.getConfig(((String)handlerCtx.getInputValue("ConfigName")));
KeepAliveConfig rp = config.getHTTPServiceConfig().getKeepAliveConfig();
String count = rp.getDefaultValue(KeepAliveConfigKeys.THREAD_COUNT_KEY );
String connections = rp.getDefaultValue(KeepAliveConfigKeys.MAX_CONNECTIONS_KEY );
String timeout = rp.getDefaultValue(KeepAliveConfigKeys.TIMEOUT_IN_SECONDS_KEY );
handlerCtx.setOutputValue("Count", count);
handlerCtx.setOutputValue("Connections", connections);
handlerCtx.setOutputValue("Timeout", timeout);
}