private final IntegrationEntityComboBox operationSelector;
public PostOperationPanel(EntityExplorerSupport explorerSupport,
OperationId selectedOpId,
EmailMessageId selectedMessageId) {
operationSelector = new IntegrationEntityComboBox(explorerSupport.getProject(),
EntityType.Operation, new NextOperationFilter(), true);
operationSelector.setSelectedEntity(selectedOpId);
messageSelector = new IntegrationEntityComboBox(explorerSupport.getProject(),
EntityType.EmailMessage, null, true);
messageSelector.setSelectedEntity(selectedMessageId);
addInputFields();
layoutComponents();
}