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

ru.yandex.qatools.camelot.api.PluginEndpoints Maven / Gradle / Ivy

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

/**
 * Describes the single plugin endpoints
 * @author Ilya Sadykov (mailto: [email protected])
 */
public interface PluginEndpoints {
    /**
     * The main input uri (equals to the Engine's input uri)
     */
    String getMainInputUri();

    /**
     * The main input route id (equals to the Engine's input uri)
     */
    String getMainInputRouteId();

    /**
     * Input uri for the plugin
     */
    String getInputUri();

    /**
     * Input route id for the plugin
     */
    String getInputRouteId();

    /**
     * Output uri for the plugin
     */
    String getOutputUri();

    /**
     * Output plugin route id for the plugin
     */
    String getOutputRouteId();

    /**
     * Temporary intermediate uri to build the route which uses the splitting
     */
    String getSplitUri();

    /**
     * Temporary intermediate route id to build the route which uses the splitting
     */
    String getSplitRouteId();

    /**
     * Temporary intermediate uri to build the route which uses the filtering
     */
    String getFilteredUri();

    /**
     * Temporary intermediate route id to build the route which uses the filtering
     */
    String getFilteredRouteId();

    /**
     * Temporary intermediate uri to build the route's output
     */
    String getProducerUri();

    /**
     * Temporary intermediate route id to build the route's output
     */
    String getProducerRouteId();

    /**
     * Temporary intermediate uri to build the route's input
     */
    String getConsumerUri();

    /**
     * Temporary intermediate route id to build the route's input
     */
    String getConsumerRouteId();

    /**
     * Plugin's uri to produce the client messages (for the frontend)
     */
    String getClientSendUri();

    /**
     * Plugin's route id to produce the client messages (for the frontend)
     */
    String getClientSendRouteId();

    /**
     * Plugin's uri for endpoint listeners
     */
    String getEndpointListenerUri();

    /**
     * Plugin's route id for endpoint listeners
     */
    String getEndpointListenerRouteId();

    /**
     * Get plugins system engine name
     */
    String getEngineName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy