/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * Copyright (c) 2013, MPL CodeInside http://codeinside.ru */ package ru.codeinside.gses.activiti.listeners; import com.google.common.base.Objects; import org.activiti.engine.delegate.DelegateExecution; import org.activiti.engine.delegate.ExecutionListener; import org.activiti.engine.impl.persistence.entity.ExecutionEntity; import ru.codeinside.adm.AdminServiceProvider; import ru.codeinside.gses.webui.Flash; import java.util.logging.Level; import java.util.logging.Logger; public class TakeProcessListener implements ExecutionListener { final static Logger logger = Logger.getLogger(TakeProcessListener.class.getName()); @Override public void notify(DelegateExecution execution) throws Exception { if (Objects.equal(ExecutionListener.EVENTNAME_END, execution.getEventName()) && execution instanceof ExecutionEntity) { try { AdminServiceProvider.get().createLog(Flash.getActor(), "execution", execution.getId(), "take", execution.getEventName(), true); } catch (Exception e) { logger.log(Level.SEVERE, e.getMessage(), e); } } } }