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

com.diboot.framework.plugin.PluggableModule Maven / Gradle / Ivy

The newest version!
package com.diboot.framework.plugin;

import com.diboot.framework.model.BaseMenu;

import java.util.List;

/**
 * 可插拔的模块接口
 * @author [email protected]
 * @version 2017/10/23
 *
 */
public interface PluggableModule {

    /***
     * 插件模块类型
     * @return
     */
    ModuleType getType();

    /***
     * 功能模块名称
     * @return
     */
    String getTitle();

    /**
     * 依赖的jar包
     * @return
     */
    List getDependencyJars();

    /**
     * 获取插件菜单
     * @return
     */
    BaseMenu getMenu();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy