com.vaadin.ui.Window.CloseListener Java Examples

The following examples show how to use com.vaadin.ui.Window.CloseListener. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AddAction.java    From jdal with Apache License 2.0 6 votes vote down vote up
/**
 * {@inheritDoc}
 */
@SuppressWarnings({ "unchecked", "rawtypes" })
@Override
public void buttonClick(ClickEvent event) {
	final TableComponent<?> table = getTable();
	VaadinView view = table.getEditorView();
	Object bean = BeanUtils.instantiate(table.getEntityClass());
	view.setModel(bean);
	ViewDialog dialog = table.getGuiFactory().newViewDialog(view);
	dialog.setModal(this.modal);
	dialog.addCloseListener(new CloseListener() {

		public void windowClose(CloseEvent e) {
			table.refresh();
		}
	});
	table.getUI().addWindow(dialog);
}
 
Example #2
Source File: PIPManagement.java    From XACML with MIT License 6 votes vote down vote up
public static void editConfiguration(final EntityItem<PIPConfiguration> entity) {
	final PIPConfigurationEditorWindow editor = new PIPConfigurationEditorWindow(entity);
	if (entity.isPersistent()) {
		editor.setCaption("Edit PIP Configuration " + entity.getEntity().getName());
	} else {
		editor.setCaption("Create New PIP Configuration");
	}
	editor.setModal(true);
	editor.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent event) {
			if (editor.isSaved()) {
				if (entity.isPersistent() == false) {
					((XacmlAdminUI)UI.getCurrent()).getPIPConfigurations().addEntity(entity.getEntity());
				}
				((XacmlAdminUI)UI.getCurrent()).refreshPIPConfiguration();
			}
		}					
	});
	editor.center();
	UI.getCurrent().addWindow(editor);
}
 
Example #3
Source File: PDPManagement.java    From XACML with MIT License 6 votes vote down vote up
protected void movePDP(final PDP pdp, final PDPGroup currentGroup) {
	List<PDPGroup> currentGroups = this.container.getGroups();
	Set<PDPGroup> otherGroups = new HashSet<PDPGroup>(currentGroups);
	if (otherGroups.remove(currentGroup) == false) {
		logger.warn("Group list inconsistency - failed to move pdp to selected group");
		return;
	}
	final SelectPDPGroupWindow editor = new SelectPDPGroupWindow(otherGroups, "What was this?");
	editor.setCaption("Move PDP to group");
	editor.setModal(true);
	editor.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent event) {
			if (editor.isSaved()) {
				self.container.movePDP((PDP) pdp, editor.selectedGroup());
			}
		}
	});
	editor.center();
	UI.getCurrent().addWindow(editor);
}
 
Example #4
Source File: AbstractFilterButtons.java    From hawkbit with Eclipse Public License 1.0 5 votes vote down vote up
protected CloseListener getCloseListenerForEditAndDeleteTag(final FilterHeaderEvent event) {
    return new Window.CloseListener() {
        private static final long serialVersionUID = 1L;

        @Override
        public void windowClose(final CloseEvent e) {
            removeUpdateAndDeleteColumn();
            getEventBus().publish(this, event);
        }
    };
}
 
Example #5
Source File: TopBar.java    From primecloud-controller with GNU General Public License v2.0 5 votes vote down vote up
public void showCloudEditWindow() {
    MyCloudManage window = new MyCloudManage();
    window.addListener(new CloseListener() {
        @Override
        public void windowClose(CloseEvent e) {
            sender.initialize();
            sender.refresh();
        }
    });
    getApplication().getMainWindow().addWindow(window);
}
 
Example #6
Source File: PIPSQLResolverEditorWindow.java    From XACML with MIT License 5 votes vote down vote up
protected void editCSVAttribute(final Table table, final ResolverAttribute request) {
	assert(this.isCSV());
	//
	// Prompt for the column
	//
	final ColumnSelectionWindow window = new ColumnSelectionWindow((request != null ? request.getColumn() : 0));
	if (request == null) {
		window.setCaption("Input the CSV Column for the new attribute");
	} else {
		window.setCaption("Edit the CSV Column for the attribute");
	}
	window.setModal(true);
	window.center();
	window.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent e) {
			//
			// Did the user save?
			//
			if (window.isSaved() == false) {
				return;
			}
			//
			// Save it if its not a new
			//
			if (request != null) {
				request.setColumn(window.getColumn());
			}
			//
			// Now we select the attribute, pass the column
			// in case this is a brand new attribute. Yeah its messy.
			//
			self.editResolverAttribute(table, request, window.getColumn());
		}
	});
	window.center();
	UI.getCurrent().addWindow(window);
}
 
Example #7
Source File: PIPResolverComponent.java    From XACML with MIT License 5 votes vote down vote up
public static void	editResolver(final EntityItem<PIPResolver> entity) {
	
	final PIPResolverEditorWindow window = new PIPResolverEditorWindow(entity);
	window.setModal(true);
	window.center();
	if (entity.isPersistent()) {
		window.setCaption("Edit Resolver");
	} else {
		window.setCaption("Create Resolver");
	}
	window.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent e) {
			//
			// Did the user click "save"?
			//
			if (window.isSaved() == false) {
				return;
			}
			//
			// Adding a new entity?
			//
			if (entity.isPersistent() == false) {
				//
				// Yes - let's official add it
				//
				((XacmlAdminUI)UI.getCurrent()).getPIPResolvers().addEntity(entity.getEntity());
				((XacmlAdminUI)UI.getCurrent()).refreshPIPConfiguration();
			}
		}
	});
	UI.getCurrent().addWindow(window);
}
 
Example #8
Source File: PolicyWorkspace.java    From XACML with MIT License 5 votes vote down vote up
protected void	renamePolicy(final File policy) {
	//
	// Run the rename window
	//
	final RenamePolicyFileWindow window = new RenamePolicyFileWindow(policy.getName());
	window.setCaption("Rename Policy");
	window.setModal(true);
	window.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;
		
		@Override
		public void windowClose(CloseEvent event) {
			String newFilename = window.getNewFilename();
			if (newFilename == null) {
				//
				// User cancelled
				//
				return;
			}
			Path newPolicy = Paths.get(policy.getParent(), newFilename);
			if (Files.exists(newPolicy)) {
				Notification.show("Cannot rename to an existing file", Notification.Type.ERROR_MESSAGE);
				return;
			}
			try {
				if (policy.renameTo(newPolicy.toFile()) == false) {
					throw new Exception("No known error, rename failed");
				}
				self.treeContainer.updateItem(newPolicy.getParent().toFile());
			} catch (Exception e) {
				Notification.show("Failed to rename file: " + e.getLocalizedMessage());
			}
		}
	});
	window.center();
	UI.getCurrent().addWindow(window);
}
 
Example #9
Source File: PolicyWorkspace.java    From XACML with MIT License 4 votes vote down vote up
protected void	importPolicy(final File domain) {
	//
	// Get the current domain
	//
	if (! domain.isDirectory()) {
		logger.error("Table must have a directory selected to import the file.");
		return;
	}
	//
	// Create the upload window
	//
	final PolicyUploadWindow upload = new PolicyUploadWindow(Paths.get(domain.toURI()));
	upload.setCaption("Import Xacml 3.0 Policy File");
	upload.setCloseShortcut(KeyCode.ESCAPE);
	upload.setModal(true);
	upload.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent e) {
			//
			// Was it successful?
			//
			Path newFile = upload.getUploadedFile();
			if (newFile == null) {
				return;
			}
			//
			// Add it
			//
			self.addPolicyFileToTree(domain, newFile.toFile());
			//
			// Are we importing anything in the policy file?
			//
			boolean importAttributes = upload.importAttributes();
			boolean importObligations = upload.importObligations();
			boolean importAdvice = upload.importAdvice();
			if (importAttributes || importObligations || importAdvice) {
				//
				// Create our importer
				//
				XACMLPolicyImporter importer = new XACMLPolicyImporter();
				importer.setImportAttributes(importAttributes);
				importer.setImportObligations(importObligations);
				importer.setImportAdvice(importAdvice);		
				importer.setIgnoreStandardAttributes(upload.ignoreStandard());
				//
				// Yes load and scan the policy
				//
				new XACMLPolicyScanner(newFile, importer).scan();
			}
		}
	});
	upload.center();
	UI.getCurrent().addWindow(upload);
}
 
Example #10
Source File: PDPManagement.java    From XACML with MIT License 4 votes vote down vote up
protected void editPDPGroup(final PDPGroup group) {
	//
	// copy the group
	//
	final StdPDPGroup copyGroup = (group == null ? null : new StdPDPGroup(group));
	//
	//
	//
	final EditPDPGroupWindow editor = new EditPDPGroupWindow(copyGroup, this.container.getGroups(), papEngine);
	if (group == null) {
		editor.setCaption("Create PDP Group");
	} else {
		editor.setCaption("Edit PDP Group " + ((PDPGroup) group).getName());
	}
	editor.setModal(true);
	editor.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent event) {
			if (editor.isSaved() == false) {
				return;
			}
			if (group == null) {
				//
				// Creating a new group
				//
				try {
					self.container.addNewGroup(editor.getGroupName(), editor.getGroupDescription());
				} catch (Exception e) {
					String message = "Unable to create Group.  Reason:\n" + e.getMessage();
					logger.error(message);
					AdminNotification.error(message);
				}
			} else {
				//
				// Update group
				//
				self.container.updateGroup(editor.getUpdatedObject());
			}
		}
	});
	editor.center();
	UI.getCurrent().addWindow(editor);
}
 
Example #11
Source File: PDPManagement.java    From XACML with MIT License 4 votes vote down vote up
protected void editPDP(final PDP pdp, final PDPGroup group) {
	final EditPDPWindow editor = new EditPDPWindow(pdp, this.container.getGroups());
	if (pdp == null) {
		editor.setCaption("Create New PDP");
	} else {
		editor.setCaption("Edit PDP " + pdp.getId());
	}
	editor.setModal(true);
	editor.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent event) {
			if (editor.isSaved() == false) {
				return;
			}
			try {
				//
				// Adding a new PDP?
				//
				if (pdp == null) {
					//
					// Yes tell the container to add it
					//
					self.container.addNewPDP(editor.getPDPId(), group, editor.getPDPName(), editor.getPDPDescription());
				} else {
					//
					// No tell the container to update it
					//
					pdp.setName(editor.getPDPName());
					pdp.setDescription(editor.getPDPDescription());
					self.container.updatePDP(pdp);
				}
			} catch (Exception e) {
				String message = "Unable to create PDP.  Reason:\n" + e.getMessage();
				logger.error(message);
				AdminNotification.error(message);
			}
		}
	});
	editor.center();
	UI.getCurrent().addWindow(editor);
}
 
Example #12
Source File: PolicyEditor.java    From XACML with MIT License 4 votes vote down vote up
protected void editCondition(final ConditionType condition, final RuleType rule) {
	//
	// Make a copy of it first, in case the user manipulates it
	// and then decides to NOT save it
	//
	final ConditionType copyCondition = (condition == null ? new ConditionType() : XACMLObjectCopy.copy(condition));
	//
	// Create the window
	//
	final ExpressionBuilderComponent expression = new ExpressionBuilderComponent(copyCondition, 
										(copyCondition.getExpression() != null ? copyCondition.getExpression().getValue() : null), 
										null,
										self.policyContainer.getVariables());
	if (condition == null) {
		expression.setCaption("Create An Expression For The Condition");
	} else {
		expression.setCaption("Edit The Condition Expression");
	}
	expression.setModal(true);
	//
	// Add the close listener
	//
	expression.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent e) {
			//
			// Did the user hit save?
			//
			if (expression.isSaved() == false) {
				return;
			}
			//
			// Were we creating something new?
			//
			if (condition == null) {
				//
				// Yes add the new one into the container
				//
				if (self.policyContainer.addItem(copyCondition, rule) == null) {
					logger.error("Failed to add condition");
				} else {
					self.tree.setCollapsed(rule, false);
					self.tree.setCollapsed(copyCondition, false);
					self.tree.select(copyCondition);
				}
			} else {
				//
				// We were editing an existing condition, so copy
				// over the new edited expression.
				//
				condition.setExpression(copyCondition.getExpression());
				//
				// Update the container
				//
				self.policyContainer.updateItem(condition);
			}
		}			
	});
	expression.center();
	UI.getCurrent().addWindow(expression);
}
 
Example #13
Source File: PolicyEditor.java    From XACML with MIT License 4 votes vote down vote up
protected void editRule(final RuleType rule, final PolicyType parent) {
	//
	// Create a copy
	//
	final RuleType newRule = (rule == null ? new RuleType() : XACMLObjectCopy.copy(rule));
	//
	// Create window
	//
	final RuleEditorWindow window = new RuleEditorWindow(newRule);
	window.setCaption(rule == null ? "Create New Rule" : "Edit Rule");
	window.setModal(true);
	window.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent e) {
			//
			// Did the user click save?
			//
			if (window.isSaved() == false) {
				return;
			}
			//
			// Was this a new rule?
			//
			if (rule == null) {
				//
				// Yes a new rule
				//
				if (newRule.getTarget() == null) {
					newRule.setTarget(new TargetType());
				}
				if (self.policyContainer.addItem(newRule, parent) == null) {
					logger.error("Failed to add new rule");
				} else {
					self.tree.setCollapsed(parent, false);
					self.tree.setCollapsed(newRule, false);
					self.tree.select(newRule);
				}
			} else {
				//
				// No - editing existing rule. Copy everything
				//
				rule.setEffect(newRule.getEffect());
				rule.setDescription(newRule.getDescription());
				self.policyContainer.updateItem(rule);
			}
		}
	});
	window.center();
	UI.getCurrent().addWindow(window);
}
 
Example #14
Source File: PolicyEditor.java    From XACML with MIT License 4 votes vote down vote up
protected void editPolicy(final PolicyType policy, final PolicySetType parent) {
	//
	// Create a copy
	//
	final PolicyType newPolicy = (policy == null ? new PolicyType() : XACMLObjectCopy.copy(policy));
	//
	// Create window
	//
	final PolicyEditorWindow window = new PolicyEditorWindow(newPolicy);
	window.setCaption(policy == null ? "Create New Policy" : "Edit Policy");
	window.setModal(true);
	window.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent e) {
			//
			// Did the user click save?
			//
			if (window.isSaved() == false) {
				return;
			}
			//
			// Was it a new Policy?
			//
			if (policy == null) {
				//
				// Yes - new add it in
				//
				if (newPolicy.getTarget() == null) {
					newPolicy.setTarget(new TargetType());
				}
				if (self.policyContainer.addItem(newPolicy, parent) == null) {
					logger.error("Failed to add policy");
				} else {
					self.tree.setCollapsed(parent, false);
					self.tree.setCollapsed(newPolicy, false);
					self.tree.select(newPolicy);
				}
			} else {
				//
				// No - copy everything
				//
				policy.setDescription(newPolicy.getDescription());
				policy.setVersion(newPolicy.getVersion());
				policy.setRuleCombiningAlgId(newPolicy.getRuleCombiningAlgId());
				//
				// Update
				//
				self.policyContainer.updateItem(policy);
			}
		}			
	});
	window.center();
	UI.getCurrent().addWindow(window);
}
 
Example #15
Source File: PolicyEditor.java    From XACML with MIT License 4 votes vote down vote up
protected void editPolicySet(final PolicySetType policy, final PolicySetType parent) {
	logger.info("editPolicySet: " + policy + " parent " + parent);
	//
	// Create a copy
	//
	final PolicySetType newPolicySet = (policy == null ? new PolicySetType() : XACMLObjectCopy.copy(policy));
	//
	// Create window
	//
	final PolicySetEditorWindow window = new PolicySetEditorWindow(newPolicySet);
	window.setCaption(policy == null ? "Create New Policy Set" : "Edit Policy Set");
	window.setModal(true);
	window.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent e) {
			//
			// Did the user click save?
			//
			if (window.isSaved() == false) {
				if (logger.isDebugEnabled()) {
					logger.debug("user did NOT save");
				}
				return;
			}
			//
			// Was it a new Policy Set?
			//
			if (policy == null) {
				logger.info("adding new policy set " + newPolicySet.getPolicySetId());
				//
				// Yes - new add it in
				//
				if (newPolicySet.getTarget() == null) {
					newPolicySet.setTarget(new TargetType());
				}
				if (self.policyContainer.addItem(newPolicySet, parent) == null) {
					logger.error("Failed to add new policy set");
				} else {
					self.tree.setCollapsed(parent, false);
					self.tree.setCollapsed(newPolicySet, false);
					self.tree.select(newPolicySet);
				}
			} else {
				logger.info("updating new policy set " + newPolicySet.getPolicySetId());
				//
				// No - copy everything
				//
				policy.setDescription(newPolicySet.getDescription());
				policy.setVersion(newPolicySet.getVersion());
				policy.setPolicyCombiningAlgId(newPolicySet.getPolicyCombiningAlgId());
				//
				// Update
				//
				self.policyContainer.updateItem(policy);
			}
		}			
	});
	window.center();
	UI.getCurrent().addWindow(window);
}
 
Example #16
Source File: PIPParameterComponent.java    From XACML with MIT License 4 votes vote down vote up
protected void editParameter(final Object source) {
	//
	// Make a copy
	//
	final Object target = (source != null ? source : (this.config instanceof PIPConfiguration ? new PIPConfigParam() : new PIPResolverParam()));
	final PIPParamEditorWindow window = new PIPParamEditorWindow(target);
	window.setModal(true);
	window.setCaption((source == null ? "Create New Parameter" : "Edit Parameter"));
	window.center();
	window.addCloseListener(new CloseListener() {
		private static final long serialVersionUID = 1L;

		@Override
		public void windowClose(CloseEvent e) {
			//
			// Did user save?
			//
			if (window.isSaved() == false) {
				return;
			}
			//
			// Yes - was it a brand new object?
			//
			if (source == null) {
				//
				// yes add it to the parent object
				//
				if (self.config instanceof PIPConfiguration) {
					((PIPConfiguration) self.config).addPipconfigParam((PIPConfigParam) target);
				} else {
					((PIPResolver) self.config).addPipresolverParam((PIPResolverParam) target);
				}
				//
				// add it to the table
				//
				Item item = self.tableParameters.addItem(target);
				if (item == null) {
					logger.error("Failed to add parameter: " + target);
				} else {
					self.tableParameters.select(target);
				}
			} else {
				//
				// Copy the parameters over
				//
				if (source instanceof PIPConfigParam) {
					((PIPConfigParam) source).setParamName(((PIPConfigParam) target).getParamName());
					((PIPConfigParam) source).setParamValue(((PIPConfigParam) target).getParamValue());
				} else {
					((PIPResolverParam) source).setParamName(((PIPResolverParam) target).getParamName());
					((PIPResolverParam) source).setParamValue(((PIPResolverParam) target).getParamValue());
				}
				//
				// Update the table
				//
				self.tableParameters.refreshRowCache();
			}
		}
	});
	UI.getCurrent().addWindow(window);
}
 
Example #17
Source File: UpdateSoftwareModuleTypeLayout.java    From hawkbit with Eclipse Public License 1.0 3 votes vote down vote up
/**
 * Constructor for initializing the pop-up window for updating a software
 * module type. The form fields are filled with the current data of the
 * selected software module type.
 * 
 * @param i18n
 *            VaadinMessageSource
 * @param entityFactory
 *            EntityFactory
 * @param eventBus
 *            UIEventBus
 * @param permChecker
 *            SpPermissionChecker
 * @param uiNotification
 *            UINotification
 * @param softwareModuleTypeManagement
 *            SoftwareModuleTypeManagement
 * @param selectedTypeName
 *            The name of the selected software module type to update
 * @param closeListener
 *            CloseListener which describes the action to do when closing
 *            the window
 */
public UpdateSoftwareModuleTypeLayout(final VaadinMessageSource i18n, final EntityFactory entityFactory,
        final UIEventBus eventBus, final SpPermissionChecker permChecker, final UINotification uiNotification,
        final SoftwareModuleTypeManagement softwareModuleTypeManagement, final String selectedTypeName,
        final CloseListener closeListener) {
    super(i18n, entityFactory, eventBus, permChecker, uiNotification, softwareModuleTypeManagement);
    this.selectedTypeName = selectedTypeName;
    this.closeListener = closeListener;
    initUpdatePopup();
}
 
Example #18
Source File: UpdateDistributionSetTypeLayout.java    From hawkbit with Eclipse Public License 1.0 3 votes vote down vote up
/**
 * Constructor
 * 
 * @param i18n
 *            VaadinMessageSource
 * @param entityFactory
 *            EntityFactory
 * @param eventBus
 *            UIEventBus
 * @param permChecker
 *            SpPermissionChecker
 * @param uiNotification
 *            UINotification
 * @param softwareModuleTypeManagement
 *            SoftwareModuleTypeManagement
 * @param distributionSetTypeManagement
 *            DistributionSetTypeManagement
 * @param distributionSetManagement
 *            DistributionSetManagement
 * @param selectedTypeName
 *            the name of the distribution set type to update
 * @param closeListener
 *            CloseListener
 */
public UpdateDistributionSetTypeLayout(final VaadinMessageSource i18n, final EntityFactory entityFactory,
        final UIEventBus eventBus, final SpPermissionChecker permChecker, final UINotification uiNotification,
        final SoftwareModuleTypeManagement softwareModuleTypeManagement,
        final DistributionSetTypeManagement distributionSetTypeManagement,
        final DistributionSetManagement distributionSetManagement, final String selectedTypeName,
        final CloseListener closeListener) {
    super(i18n, entityFactory, eventBus, permChecker, uiNotification, distributionSetTypeManagement,
            softwareModuleTypeManagement);
    this.distributionSetManagement = distributionSetManagement;
    this.selectedTypeName = selectedTypeName;
    this.closeListener = closeListener;
    initUpdatePopup();
}
 
Example #19
Source File: UpdateDistributionSetTagLayout.java    From hawkbit with Eclipse Public License 1.0 3 votes vote down vote up
/**
 * Constructor
 * 
 * @param i18n
 *            VaadinMessageSource
 * @param distributionSetTagManagement
 *            DistributionSetTagManagement
 * @param entityFactory
 *            EntityFactory
 * @param eventBus
 *            UIEventBus
 * @param permChecker
 *            SpPermissionChecker
 * @param uiNotification
 *            UINotification
 * @param selectedTagName
 *            name of the selected distribution set tag to update
 * @param closeListener
 *            CloseListener
 */
public UpdateDistributionSetTagLayout(final VaadinMessageSource i18n,
        final DistributionSetTagManagement distributionSetTagManagement, final EntityFactory entityFactory,
        final UIEventBus eventBus, final SpPermissionChecker permChecker, final UINotification uiNotification,
        final String selectedTagName, final CloseListener closeListener) {
    super(i18n, entityFactory, eventBus, permChecker, uiNotification, distributionSetTagManagement);
    this.selectedTagName = selectedTagName;
    this.closeListener = closeListener;
    initUpdatePopup();
}
 
Example #20
Source File: UpdateTargetTagLayout.java    From hawkbit with Eclipse Public License 1.0 3 votes vote down vote up
/**
 * Constructor
 * 
 * @param i18n
 *            VaadinMessageSource
 * @param targetTagManagement
 *            TargetTagManagement
 * @param entityFactory
 *            EntityFactory
 * @param eventBus
 *            UIEventBus
 * @param permChecker
 *            SpPermissionChecker
 * @param uiNotification
 *            UINotification
 * @param selectedTagName
 *            name of the selected target tag to update
 * @param closeListener
 *            CloseListener
 */
public UpdateTargetTagLayout(final VaadinMessageSource i18n, final TargetTagManagement targetTagManagement,
        final EntityFactory entityFactory, final UIEventBus eventBus, final SpPermissionChecker permChecker,
        final UINotification uiNotification, final String selectedTagName, final CloseListener closeListener) {
    super(i18n, entityFactory, eventBus, permChecker, uiNotification, targetTagManagement);
    this.selectedTagName = selectedTagName;
    this.closeListener = closeListener;
    initUpdatePopup();
}