private UiProvider createLayout(Operation from, IntegrationEntity to) {
JLabel caption = WizardStyleSheet.SMALL_SECTION_STYLE.makeLabel(
Strings.get("RouteTypeSelector.SelectType"));
caption.setBorder(Empty.border(0, 0, 5, 0));
UiProvider buttonUi = buttons.getUi(caption, RadioButtonGroupPanel.Layout.TWO_ROWS);
BoxBuilder col = BoxBuilder.vertical().leftAligned();
col.addAllWithSpace(32, createCaption(from, to), buttonUi);
return col;
}