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

com.servicerocket.confluence.randombits.conveyor.ConveyorManager Maven / Gradle / Ivy

There is a newer version: 2.5.12
Show newest version
package com.servicerocket.confluence.randombits.conveyor;

import com.servicerocket.confluence.randombits.conveyor.xwork.ConveyorConfigurationProvider;

import java.util.Collection;

/**
 * Provides access to the list of conveyor packages that are installed on the system.
 */
public interface ConveyorManager {
    /**
     * Adds the specified array of providers to the list for this plugin.
     *
     * @param providers The list of providers to add.
     */
    void addProviders( ConveyorConfigurationProvider... providers );

    /**
     * Adds the specified array of providers to the list for this plugin.
     *
     * @param providers The list of providers to add.
     */
    void addProviders( Collection providers );

    /**
     * Removes any registered providers in the list, and reloads the XWork stack.
     *
     * @param providers The list of providers to remove.
     */
    void removeProviders( ConveyorConfigurationProvider... providers );

    /**
     * Removes the specified array of providers from the list.
     *
     * @param providers The list of providers to add.
     */
    void removeProviders( Collection providers );

    /**
     * @return The list of registered providers.
     */
    Collection getProviders();

    /**
     * Reloads the registered providers into the XWork stack.
     */
    void reload();

    /**
     *
     */
    void enable();

    void disable();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy