com.epam.reportportal.extension.PluginCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-api Show documentation
Show all versions of plugin-api Show documentation
EPAM Report portal. Plugin extension APIs
The newest version!
package com.epam.reportportal.extension;
import com.epam.ta.reportportal.entity.integration.Integration;
import java.util.Map;
/**
* @author Pavel Bortnik
*/
public interface PluginCommand extends NamedPluginCommand {
/**
* Executes plugin command for existed integration
*
* @param integration Configured ReportPortal integration
* @param params Plugin Command parameters
* @return Result
*/
T executeCommand(Integration integration, Map params);
}