cn.sylinx.hbatis.plugin.IPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
package cn.sylinx.hbatis.plugin;
/**
* 插件
*
* @author han 2016年7月9日 下午5:11:25
*
*/
public interface IPlugin {
/**
* 插件启动
*
* @param objects
* @return
*/
boolean start(Object... objects);
/**
* 插件关闭
*
* @return
*/
boolean stop();
}