Java tutorial
/** * Copyright (C) 2011 PROCESSBASE Ltd. * This library is free software; you can redistribute it and/or modify it under the terms * of the GNU Lesser General Public License as published by the Free Software Foundation * version 2.1 of the License. * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, see <http://www.gnu.org/licenses/>. */ package org.processbase.ui.bpm.identity; import com.vaadin.data.Item; import com.vaadin.ui.Button; import com.vaadin.ui.Button.ClickEvent; import com.vaadin.ui.Window; import java.util.List; import org.ow2.bonita.facade.IdentityAPI; import org.ow2.bonita.facade.identity.Role; import org.processbase.ui.core.Constants; import org.processbase.ui.core.ProcessbaseApplication; import org.processbase.ui.core.template.ConfirmDialog; import org.processbase.ui.core.template.TableLinkButton; import org.processbase.ui.core.template.TablePanel; /** * * @author marat gubaidullin */ public class RolesPanel extends TablePanel implements Button.ClickListener, Window.CloseListener { public RolesPanel() { super(); } @Override public void initUI() { super.initUI(); table.addContainerProperty("name", TableLinkButton.class, null, ProcessbaseApplication.getCurrent().getPbMessages().getString("tableCaptionName"), null, null); table.setColumnExpandRatio("name", 1); table.addContainerProperty("label", String.class, null, ProcessbaseApplication.getCurrent().getPbMessages().getString("tableCaptionLabel"), null, null); table.addContainerProperty("description", String.class, null, ProcessbaseApplication.getCurrent().getPbMessages().getString("tableCaptionDescription"), null, null); table.addContainerProperty("actions", TableLinkButton.class, null, ProcessbaseApplication.getCurrent().getPbMessages().getString("tableCaptionActions"), null, null); table.setImmediate(true); } @Override public void refreshTable() { try { table.removeAllItems(); List<Role> roles = ProcessbaseApplication.getCurrent().getBpmModule().getAllRoles(); for (Role role : roles) { Item woItem = table.addItem(role); TableLinkButton teb = new TableLinkButton(role.getName(), "", null, role, this, Constants.ACTION_OPEN); woItem.getItemProperty("name").setValue(teb); woItem.getItemProperty("label").setValue(role.getLabel()); woItem.getItemProperty("description").setValue(role.getDescription()); if (!role.getName().equals(IdentityAPI.ADMIN_ROLE_NAME) && !role.getName().equals(IdentityAPI.USER_ROLE_NAME)) { TableLinkButton tlb = new TableLinkButton( ProcessbaseApplication.getCurrent().getPbMessages().getString("btnDelete"), "icons/cancel.png", role, this, Constants.ACTION_DELETE); woItem.getItemProperty("actions").setValue(tlb); } } table.setSortContainerPropertyId("name"); table.setSortAscending(false); table.sort(); } catch (Exception ex) { ex.printStackTrace(); showError(ex.getMessage()); } } @Override public void buttonClick(ClickEvent event) { super.buttonClick(event); if (event.getButton() instanceof TableLinkButton) { TableLinkButton execBtn = (TableLinkButton) event.getButton(); Role role = (Role) execBtn.getTableValue(); if (execBtn.getAction().equals(Constants.ACTION_DELETE)) { try { removeRole(role); } catch (Exception ex) { ex.printStackTrace(); showError(ex.getMessage()); } } else if (execBtn.getAction().equals(Constants.ACTION_OPEN)) { RoleWindow nrw = new RoleWindow(role); nrw.addListener((Window.CloseListener) this); getWindow().addWindow(nrw); nrw.initUI(); } } } private void removeRole(final Role role) { ConfirmDialog.show(getApplication().getMainWindow(), ProcessbaseApplication.getCurrent().getPbMessages().getString("windowCaptionConfirm"), ProcessbaseApplication.getCurrent().getPbMessages().getString("removeRole") + "?", ProcessbaseApplication.getCurrent().getPbMessages().getString("btnYes"), ProcessbaseApplication.getCurrent().getPbMessages().getString("btnNo"), new ConfirmDialog.Listener() { public void onClose(ConfirmDialog dialog) { if (dialog.isConfirmed()) { try { ProcessbaseApplication.getCurrent().getBpmModule().removeRoleByUUID(role.getUUID()); table.removeItem(role); } catch (Exception ex) { showError(ex.getMessage()); ex.printStackTrace(); } } } }); } }