本文整理匯總了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;
}
示例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;
}
示例3: getDefaultTenantConfig
import org.easyrec.model.core.TenantConfigVO; //導入依賴的package包/類
@Override
public TenantConfigVO getDefaultTenantConfig() {
return defaultTenantConfig;
}
示例4: insertTenantWithTypes
import org.easyrec.model.core.TenantConfigVO; //導入依賴的package包/類
public int insertTenantWithTypes(TenantVO tenant, TenantConfigVO tenantConfig);
示例5: getDefaultTenantConfig
import org.easyrec.model.core.TenantConfigVO; //導入依賴的package包/類
public TenantConfigVO getDefaultTenantConfig();