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

org.zodiac.plugin.extension.PluginControllerProcessorExtend Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.plugin.extension;

import java.util.List;

/**
 * 可扩展的 controller 处理者。
 */
public interface PluginControllerProcessorExtend {

    /**
     * 初始化
     */
    void initialize();

    /**
     * 注册
     * 
     * @param pluginId
     *            插件id
     * @param controllerWrappers
     *            controller 类集合
     * @throws Exception
     *             异常
     */
    void registry(String pluginId, List controllerWrappers) throws Exception;

    /**
     * 注册
     * 
     * @param pluginId
     *            插件id
     * @param controllerWrappers
     *            controller 类集合
     * @throws Exception
     *             异常
     */
    void unRegistry(String pluginId, List controllerWrappers) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy