}
};
ComboBoxItem protocol = new ComboBoxItem("protocol", "Protocol");
ComboBoxItem scheme = new ComboBoxItem("scheme", "Scheme");
protocol.setDefaultToFirstOption(true);
protocol.setValueMap(new String[]{"HTTP/1.1", "AJP/1.3"});
scheme.setDefaultToFirstOption(true);
scheme.setValueMap(new String[]{"http", "https"});
CheckBoxItem enabled = new CheckBoxItem("enabled", "Enabled?");
enabled.setValue(Boolean.TRUE);
form.setFields(name,socket,protocol,scheme, enabled);