org.imixs.marty.plugins.TeamPlugin Maven / Gradle / Ivy
/*******************************************************************************
* Imixs Workflow
* Copyright (C) 2001, 2011 Imixs Software Solutions GmbH,
* http://www.imixs.com
*
* 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
* 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 can receive a copy of the GNU General Public
* License at http://www.gnu.org/licenses/gpl.html
*
* Project:
* http://www.imixs.org
* http://java.net/projects/imixs-workflow
*
* Contributors:
* Imixs Software Solutions GmbH - initial API and implementation
* Ralph Soika - Software Developer
*******************************************************************************/
package org.imixs.marty.plugins;
import java.util.logging.Logger;
import org.imixs.workflow.ItemCollection;
import org.imixs.workflow.exceptions.PluginException;
/**
* This plugin is deprecated an simply overwrite the Marty Team Plugin. Because
* the plugin was used by older workflow models the plugin will not be removed.
*
* @author rsoika
* @version 3.0
*
*/
@Deprecated
public class TeamPlugin extends org.imixs.marty.team.TeamPlugin {
private static Logger logger = Logger.getLogger(TeamPlugin.class.getName());
@Override
public ItemCollection run(ItemCollection adocumentContext, ItemCollection documentActivity) throws PluginException {
logger.warning("This TeamPlugin is deprecated and should be replaced with 'org.imixs.marty.team.TeamPlugin'");
return super.run(adocumentContext, documentActivity);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy