
commons.box.app.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-app Show documentation
Show all versions of commons-box-app Show documentation
Common utils for BOX projects.
The newest version!
package commons.box.app.bean;
import commons.box.app.MetaBean;
import commons.box.app.MetaBeanConfig;
import commons.box.app.MetaBeanFactory;
import javax.annotation.Nonnull;
import java.util.List;
/**
* 创建作者:xingxiuyi
* 版权所属:xingxiuyi
*/
public interface BeanMetaAccess extends BeanAccess {
/**
* 系统所使用的meta bean工厂
*
* @return
*/
@Nonnull
public List factories();
/**
* 获取配置
*
* @param configID
* @return
*/
public MetaBeanConfig config(String configID);
/**
* 额外构建
*
* @param configID
* @return
*/
public MetaBean inst2(String configID);
/**
* 额外构建
*
* @param config
* @return
*/
public MetaBean inst2(MetaBeanConfig config);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy