/** * Copyright (C) 2011 BonitaSoft S.A. * BonitaSoft, 31 rue Gustave Eiffel - 38000 Grenoble * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2.0 of the License, or * (at your option) any later version. * This program 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 General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.bonitasoft.console.client.admin.process.view.section.entitymapping; import static org.bonitasoft.web.toolkit.client.common.i18n.AbstractI18n._; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import org.bonitasoft.console.client.admin.process.view.ProcessListingAdminPage; import org.bonitasoft.console.client.admin.process.view.section.entitymapping.action.ShowAddUserToActorPageAction; import org.bonitasoft.console.client.common.view.ViewParameter; import org.bonitasoft.web.rest.model.bpm.process.ActorItem; import org.bonitasoft.web.rest.model.bpm.process.ActorMemberItem; import org.bonitasoft.web.rest.model.identity.MemberType; import org.bonitasoft.web.toolkit.client.common.texttemplate.Arg; import org.bonitasoft.web.toolkit.client.data.APIID; import org.bonitasoft.web.toolkit.client.ui.action.HistoryBackAction; import org.bonitasoft.web.toolkit.client.ui.component.button.ButtonAction; import org.bonitasoft.web.toolkit.client.ui.component.table.ItemTable; import org.bonitasoft.web.toolkit.client.ui.component.table.Table; /** * * popup * * User List page * * @author Julien Mege */ public class ListProcessActorUserPage extends ListProcessActorMemberPage { public static final String TOKEN = "ListProcessActorUser"; public static final List<String> PRIVILEGES = new ArrayList<String>(); static { PRIVILEGES.add(ProcessListingAdminPage.TOKEN); PRIVILEGES.add("reportlistingadminext"); } @Override public void defineTitle(final ActorItem actor) { setTitle(_("Edit users of actor %actor_name%", new Arg("actor_name", getDisplayName(actor)))); } @Override public void buildView(final ActorItem actor) { addBody(userTable(actor)); } private ItemTable userTable(final ActorItem actor) { final String actorId = actor.getId().toString(); final Map<String, String> params = builItemTableParameters(actor, actorId); return userItemTable(actor, actorId, params); } private Map<String, String> builItemTableParameters(final ActorItem actor, final String actorId) { final Map<String, String> params = new HashMap<String, String>(); params.put(ViewParameter.ID, actorId); params.put(ActorMemberItem.ATTRIBUTE_ACTOR_ID, actor.getId().toString()); params.put(DeleteActorMemberPage.PARAM_REDIRECT_TOKEN, TOKEN); params.put(ViewParameter.PROCESS_ID, this.getParameter(ViewParameter.PROCESS_ID)); return params; } private ItemTable userItemTable(final ActorItem actor, final String actorId, final Map<String, String> params) { ItemTable table = buildItemTable(actor.getId(), MemberType.USER, params) .addAction(new ButtonAction("btn-add-user", _("Add a user"), "", new ShowAddUserToActorPageAction(actorId))) .addAction(new ButtonAction("btn-close", _("Close"), "", new HistoryBackAction())) .setView(Table.VIEW_TYPE.FORM); table.addCellFormatter("member", new UserMemberCellFormatter()); return table; } public static Map<String, String> buildPageParameters(final APIID actorId) { return Collections.singletonMap(ActorMemberItem.ATTRIBUTE_ACTOR_ID, actorId.toString()); } @Override public String defineToken() { return TOKEN; } }