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


Java TenantConfigVO類代碼示例

本文整理匯總了Java中org.easyrec.model.core.TenantConfigVO的典型用法代碼示例。如果您正苦於以下問題:Java TenantConfigVO類的具體用法?Java TenantConfigVO怎麽用?Java TenantConfigVO使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


TenantConfigVO類屬於org.easyrec.model.core包,在下文中一共展示了TenantConfigVO類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: TenantServiceImpl

import org.easyrec.model.core.TenantConfigVO; //導入依賴的package包/類
public TenantServiceImpl(TenantDAO tenantDAO, TenantConfigVO tenantConfig, ActionTypeDAO actionTypeDAO,
                         AggregateTypeDAO aggregateTypeDAO, AssocTypeDAO assocTypeDAO, ItemTypeDAO itemTypeDAO,
                         SourceTypeDAO sourceTypeDAO, ViewTypeDAO viewTypeDAO,
                         AuthenticationDAO authenticationDAO, ItemAssocDAO itemAssocDAO,
                         ActionDAO actionDAO, ItemDAO itemDAO) {
    this.tenantDAO = tenantDAO;
    this.defaultTenantConfig = tenantConfig;
    this.actionTypeDAO = actionTypeDAO;
    this.aggregateTypeDAO = aggregateTypeDAO;
    this.assocTypeDAO = assocTypeDAO;
    this.itemTypeDAO = itemTypeDAO;
    this.sourceTypeDAO = sourceTypeDAO;
    this.viewTypeDAO = viewTypeDAO;
    this.authenticationDAO = authenticationDAO;
    this.itemAssocDAO  = itemAssocDAO;
    this.actionDAO = actionDAO;
    this.itemDAO = itemDAO;
}
 
開發者ID:major2015,項目名稱:easyrec_major,代碼行數:19,代碼來源:TenantServiceImpl.java

示例2: TenantServiceImpl

import org.easyrec.model.core.TenantConfigVO; //導入依賴的package包/類
public TenantServiceImpl(TenantDAO tenantDAO, TenantConfigVO tenantConfig, ActionTypeDAO actionTypeDAO,
                         AggregateTypeDAO aggregateTypeDAO, AssocTypeDAO assocTypeDAO, ItemTypeDAO itemTypeDAO,
                         SourceTypeDAO sourceTypeDAO, ViewTypeDAO viewTypeDAO,
                         AuthenticationDAO authenticationDAO) {
    this.tenantDAO = tenantDAO;
    this.defaultTenantConfig = tenantConfig;
    this.actionTypeDAO = actionTypeDAO;
    this.aggregateTypeDAO = aggregateTypeDAO;
    this.assocTypeDAO = assocTypeDAO;
    this.itemTypeDAO = itemTypeDAO;
    this.sourceTypeDAO = sourceTypeDAO;
    this.viewTypeDAO = viewTypeDAO;
    this.authenticationDAO = authenticationDAO;
}
 
開發者ID:customertimes,項目名稱:easyrec-PoC,代碼行數:15,代碼來源:TenantServiceImpl.java

示例3: getDefaultTenantConfig

import org.easyrec.model.core.TenantConfigVO; //導入依賴的package包/類
@Override
public TenantConfigVO getDefaultTenantConfig() {
    return defaultTenantConfig;
}
 
開發者ID:major2015,項目名稱:easyrec_major,代碼行數:5,代碼來源:TenantServiceImpl.java

示例4: insertTenantWithTypes

import org.easyrec.model.core.TenantConfigVO; //導入依賴的package包/類
public int insertTenantWithTypes(TenantVO tenant, TenantConfigVO tenantConfig); 
開發者ID:major2015,項目名稱:easyrec_major,代碼行數:2,代碼來源:TenantService.java

示例5: getDefaultTenantConfig

import org.easyrec.model.core.TenantConfigVO; //導入依賴的package包/類
public TenantConfigVO getDefaultTenantConfig(); 
開發者ID:major2015,項目名稱:easyrec_major,代碼行數:2,代碼來源:TenantService.java


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