All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.yandex.qatools.camelot.common.PluginContextInjector Maven / Gradle / Ivy

There is a newer version: 2.5.4
Show newest version
package ru.yandex.qatools.camelot.common;

import org.apache.camel.Exchange;
import ru.yandex.qatools.camelot.config.PluginContext;

/**
 * Helper class to inject all the required dependencies into the plugin instance
 *
 * @author Ilya Sadykov (mailto: [email protected])
 */
public interface PluginContextInjector

{ /** * Inject the context into the plugin instance when exchange is not available */ void inject(final P pluginObj, final PluginContext pluginContext); /** * Inject the context into the plugin instance */ void inject(final P pluginObj, final PluginContext pluginContext, final Exchange exchange); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy