@HandlerOutput(name="Default", type=String.class)})
public static void getHttpProtocolSettings(HandlerContext handlerCtx) {
ConfigConfig config = AMXUtil.getConfig(((String)handlerCtx.getInputValue("ConfigName")));
HTTPProtocolConfig hp = config.getHTTPServiceConfig().getHTTPProtocolConfig();
String version = hp.getVersion();
boolean dns = hp.getDNSLookupEnabled();
boolean ssl = hp.getSSLEnabled();
String forced = hp.getForcedType();
String defaultResponse = hp.getDefaultType();
handlerCtx.setOutputValue("Version", version);
handlerCtx.setOutputValue("DNS", dns);
handlerCtx.setOutputValue("SSL", ssl);
handlerCtx.setOutputValue("Forced", forced);
handlerCtx.setOutputValue("Default", defaultResponse);