本文整理匯總了Java中org.easyrec.service.web.RemoteTenantService類的典型用法代碼示例。如果您正苦於以下問題:Java RemoteTenantService類的具體用法?Java RemoteTenantService怎麽用?Java RemoteTenantService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
RemoteTenantService類屬於org.easyrec.service.web包,在下文中一共展示了RemoteTenantService類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: NamedConfigurationServiceImpl
import org.easyrec.service.web.RemoteTenantService; //導入依賴的package包/類
public NamedConfigurationServiceImpl(TypeMappingService typeMappingService, SourceTypeDAO sourceTypeDAO,
PluginRegistry pluginRegistry, NamedConfigurationDAO namedConfigurationDAO,
EasyRecSettings easyrecSettings, RemoteTenantDAO remoteTenantDAO,
RemoteTenantService remoteTenantService,
ShopRecommenderService shopRecommenderService,
GeneratorContainer generatorContainer,
JSONProfileServiceImpl jsonProfileService) {
this.typeMappingService = typeMappingService;
this.sourceTypeDAO = sourceTypeDAO;
this.pluginRegistry = pluginRegistry;
this.namedConfigurationDAO = namedConfigurationDAO;
this.easyrecSettings = easyrecSettings;
this.remoteTenantDAO = remoteTenantDAO;
this.remoteTenantService = remoteTenantService;
this.shopRecommenderService = shopRecommenderService;
this.generatorContainer = generatorContainer;
this.jsonProfileService = jsonProfileService;
}
示例2: NamedConfigurationServiceImpl
import org.easyrec.service.web.RemoteTenantService; //導入依賴的package包/類
public NamedConfigurationServiceImpl(TypeMappingService typeMappingService, SourceTypeDAO sourceTypeDAO,
PluginRegistry pluginRegistry, NamedConfigurationDAO namedConfigurationDAO,
EasyRecSettings easyrecSettings, RemoteTenantDAO remoteTenantDAO,
RemoteTenantService remoteTenantService,
ShopRecommenderService shopRecommenderService,
GeneratorContainer generatorContainer) {
this.typeMappingService = typeMappingService;
this.sourceTypeDAO = sourceTypeDAO;
this.pluginRegistry = pluginRegistry;
this.namedConfigurationDAO = namedConfigurationDAO;
this.easyrecSettings = easyrecSettings;
this.remoteTenantDAO = remoteTenantDAO;
this.remoteTenantService = remoteTenantService;
this.shopRecommenderService = shopRecommenderService;
this.generatorContainer = generatorContainer;
}
示例3: initialize
import org.easyrec.service.web.RemoteTenantService; //導入依賴的package包/類
private void initialize() {
ApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
this.tenantService = context.getBean("tenantService", TenantService.class);
this.remoteTenantDAO = context.getBean("remoteTenantDAO", RemoteTenantDAO.class);
this.remoteTenantService = context.getBean("remoteTenantService", RemoteTenantService.class);
this.shopRecommenderService = context.getBean("shopRecommenderService", ShopRecommenderService.class);
this.easyrecSettings = context.getBean("easyrecSettings", EasyRecSettings.class);
this.pluginRegistry = context.getBean("pluginRegistry", PluginRegistry.class);
this.generatorContainer = context.getBean("generatorContainer", GeneratorContainer.class);
this.logEntryDAO = context.getBean("logEntryDAO", LogEntryDAO.class);
initialized = true;
}
示例4: initialize
import org.easyrec.service.web.RemoteTenantService; //導入依賴的package包/類
private void initialize() {
ApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
this.tenantService = context.getBean("tenantService", TenantService.class);
this.remoteTenantDAO = context.getBean("remoteTenantDAO", RemoteTenantDAO.class);
this.remoteTenantService = context.getBean("remoteTenantService", RemoteTenantService.class);
this.shopRecommenderService = context.getBean("shopRecommenderService", ShopRecommenderService.class);
this.easyrecSettings = context.getBean("easyrecSettings", EasyRecSettings.class);
this.pluginRegistry = context.getBean("pluginRegistry", PluginRegistry.class);
this.generatorContainer = context.getBean("generatorContainer", GeneratorContainer.class);
initialized = true;
}
示例5: setRemoteTenantService
import org.easyrec.service.web.RemoteTenantService; //導入依賴的package包/類
public void setRemoteTenantService(RemoteTenantService remoteTenantService) {
this.remoteTenantService = remoteTenantService;
}