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

com.swak.core.extension.ExtensionConfigProvider Maven / Gradle / Ivy


package com.swak.core.extension;

public interface ExtensionConfigProvider extends ExtensionPoint {

	/**
	 * 	配置信息上报
	 */
	default  void report(O resource) {};
	
	/**获取配置**/
	O getConfig(I resource);
	
	default  boolean enable(I resource) {
		return false;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy