![JAR search and dependency download from the Maven repository](/logo.png)
commons.box.bean.BeanMetaAccess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-box-bean Show documentation
Show all versions of commons-box-bean Show documentation
Common utils for BOX projects.
The newest version!
package commons.box.bean;
/**
* 创建作者:xingxiuyi
* 版权所属:xingxiuyi
*/
public interface BeanMetaAccess extends BeanAccess {
/**
* 额外构建
*
* @param configID
* @return
*/
public MetaBean inst2(String configID);
/**
* 额外构建
*
* @param config
* @return
*/
public MetaBean inst2(MetaBeanConfig config);
}