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

com.daiyc.extension.core.ExtensionLoader Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package com.daiyc.extension.core;

/**
 * @author daiyc
 * @since  2024/7/16
 */
public interface ExtensionLoader {
    /**
     * 获取指定类型的自适应扩展
     *
     * @return 自适应的扩展对象
     */
    T getExtension();

    /**
     * 获取对应的扩展实例
     * @param name 名称
     */
    T getExtension(String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy