ru.yandex.qatools.camelot.common.builders.ResourceBuilder Maven / Gradle / Ivy
package ru.yandex.qatools.camelot.common.builders;
import org.apache.camel.CamelContext;
import ru.yandex.qatools.camelot.config.Plugin;
/**
* @author Ilya Sadykov (mailto: [email protected])
*/
public interface ResourceBuilder {
/**
* Build objects and add them to the context
*/
void build(CamelContext camelContext, Plugin plugin) throws Exception; //NOSONAR
}