本文整理汇总了Java中org.easyrec.store.dao.plugin.PluginDAO类的典型用法代码示例。如果您正苦于以下问题:Java PluginDAO类的具体用法?Java PluginDAO怎么用?Java PluginDAO使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
PluginDAO类属于org.easyrec.store.dao.plugin包,在下文中一共展示了PluginDAO类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: PluginRegistry
import org.easyrec.store.dao.plugin.PluginDAO; //导入依赖的package包/类
public PluginRegistry(Resource pluginFolder, PluginDAO pluginDAO, ItemAssocDAO itemAssocDAO,
TenantService tenantService, TypeMappingService typeMappingService,
Map<PluginId, Generator<GeneratorConfiguration, GeneratorStatistics>> generators) {
this.pluginFolder = pluginFolder;
this.pluginDAO = pluginDAO;
this.itemAssocDAO = itemAssocDAO;
this.tenantService = tenantService;
this.typeMappingService = typeMappingService;
this.generators = generators;
}
示例2: setPluginDAO
import org.easyrec.store.dao.plugin.PluginDAO; //导入依赖的package包/类
public void setPluginDAO(PluginDAO pluginDAO) {
this.pluginDAO = pluginDAO;
}