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

com.gitee.starblues.extension.PluginControllerProcessor Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.gitee.starblues.extension;


/**
 * controller 处理者
 *
 * @author zhangzhuo
 * @version 1.0
 */
public interface PluginControllerProcessor {

    /**
     * 注册
     * @param pluginId 插件id
     * @param controllerClass controller 类
     * @throws Exception 异常
     */
    void registry(String pluginId, Class controllerClass) throws Exception;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy