當前位置: 首頁>>代碼示例>>Java>>正文


Java RemoteTenantService類代碼示例

本文整理匯總了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;
}
 
開發者ID:major2015,項目名稱:easyrec_major,代碼行數:19,代碼來源:NamedConfigurationServiceImpl.java

示例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;
}
 
開發者ID:customertimes,項目名稱:easyrec-PoC,代碼行數:17,代碼來源:NamedConfigurationServiceImpl.java

示例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;
}
 
開發者ID:major2015,項目名稱:easyrec_major,代碼行數:15,代碼來源:PluginStarter.java

示例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;
}
 
開發者ID:customertimes,項目名稱:easyrec-PoC,代碼行數:14,代碼來源:PluginStarter.java

示例5: setRemoteTenantService

import org.easyrec.service.web.RemoteTenantService; //導入依賴的package包/類
public void setRemoteTenantService(RemoteTenantService remoteTenantService) {
    this.remoteTenantService = remoteTenantService;
}
 
開發者ID:major2015,項目名稱:easyrec_major,代碼行數:4,代碼來源:TenantsController.java


注:本文中的org.easyrec.service.web.RemoteTenantService類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。