
com.liferay.commerce.product.service.base.CPDefinitionServiceBaseImpl Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.commerce.product.service.base;
import com.liferay.asset.kernel.service.persistence.AssetCategoryPersistence;
import com.liferay.asset.kernel.service.persistence.AssetEntryPersistence;
import com.liferay.asset.kernel.service.persistence.AssetLinkPersistence;
import com.liferay.commerce.product.model.CPDefinition;
import com.liferay.commerce.product.service.CPDefinitionService;
import com.liferay.commerce.product.service.persistence.CPAttachmentFileEntryFinder;
import com.liferay.commerce.product.service.persistence.CPAttachmentFileEntryPersistence;
import com.liferay.commerce.product.service.persistence.CPDefinitionFinder;
import com.liferay.commerce.product.service.persistence.CPDefinitionLinkPersistence;
import com.liferay.commerce.product.service.persistence.CPDefinitionLocalizationPersistence;
import com.liferay.commerce.product.service.persistence.CPDefinitionOptionRelPersistence;
import com.liferay.commerce.product.service.persistence.CPDefinitionOptionValueRelPersistence;
import com.liferay.commerce.product.service.persistence.CPDefinitionPersistence;
import com.liferay.commerce.product.service.persistence.CPDefinitionSpecificationOptionValuePersistence;
import com.liferay.commerce.product.service.persistence.CPDisplayLayoutPersistence;
import com.liferay.commerce.product.service.persistence.CPFriendlyURLEntryPersistence;
import com.liferay.commerce.product.service.persistence.CPInstanceFinder;
import com.liferay.commerce.product.service.persistence.CPInstancePersistence;
import com.liferay.commerce.product.service.persistence.CPMeasurementUnitPersistence;
import com.liferay.commerce.product.service.persistence.CPOptionCategoryPersistence;
import com.liferay.commerce.product.service.persistence.CPOptionPersistence;
import com.liferay.commerce.product.service.persistence.CPOptionValuePersistence;
import com.liferay.commerce.product.service.persistence.CPRuleAssetCategoryRelPersistence;
import com.liferay.commerce.product.service.persistence.CPRulePersistence;
import com.liferay.commerce.product.service.persistence.CPRuleUserSegmentRelPersistence;
import com.liferay.commerce.product.service.persistence.CPSpecificationOptionPersistence;
import com.liferay.commerce.product.service.persistence.CPTaxCategoryPersistence;
import com.liferay.expando.kernel.service.persistence.ExpandoRowPersistence;
import com.liferay.portal.kernel.bean.BeanReference;
import com.liferay.portal.kernel.dao.db.DB;
import com.liferay.portal.kernel.dao.db.DBManagerUtil;
import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService;
import com.liferay.portal.kernel.service.BaseServiceImpl;
import com.liferay.portal.kernel.service.persistence.ClassNamePersistence;
import com.liferay.portal.kernel.service.persistence.CompanyPersistence;
import com.liferay.portal.kernel.service.persistence.GroupPersistence;
import com.liferay.portal.kernel.service.persistence.UserPersistence;
import com.liferay.portal.kernel.service.persistence.WorkflowInstanceLinkPersistence;
import com.liferay.portal.kernel.util.PortalUtil;
import com.liferay.portal.spring.extender.service.ServiceReference;
import com.liferay.trash.kernel.service.persistence.TrashEntryPersistence;
import javax.sql.DataSource;
/**
* Provides the base implementation for the cp definition remote service.
*
*
* This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in {@link com.liferay.commerce.product.service.impl.CPDefinitionServiceImpl}.
*
*
* @author Marco Leo
* @see com.liferay.commerce.product.service.impl.CPDefinitionServiceImpl
* @see com.liferay.commerce.product.service.CPDefinitionServiceUtil
* @generated
*/
public abstract class CPDefinitionServiceBaseImpl extends BaseServiceImpl
implements CPDefinitionService, IdentifiableOSGiService {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this class directly. Always use {@link com.liferay.commerce.product.service.CPDefinitionServiceUtil} to access the cp definition remote service.
*/
/**
* Returns the cp attachment file entry local service.
*
* @return the cp attachment file entry local service
*/
public com.liferay.commerce.product.service.CPAttachmentFileEntryLocalService getCPAttachmentFileEntryLocalService() {
return cpAttachmentFileEntryLocalService;
}
/**
* Sets the cp attachment file entry local service.
*
* @param cpAttachmentFileEntryLocalService the cp attachment file entry local service
*/
public void setCPAttachmentFileEntryLocalService(
com.liferay.commerce.product.service.CPAttachmentFileEntryLocalService cpAttachmentFileEntryLocalService) {
this.cpAttachmentFileEntryLocalService = cpAttachmentFileEntryLocalService;
}
/**
* Returns the cp attachment file entry remote service.
*
* @return the cp attachment file entry remote service
*/
public com.liferay.commerce.product.service.CPAttachmentFileEntryService getCPAttachmentFileEntryService() {
return cpAttachmentFileEntryService;
}
/**
* Sets the cp attachment file entry remote service.
*
* @param cpAttachmentFileEntryService the cp attachment file entry remote service
*/
public void setCPAttachmentFileEntryService(
com.liferay.commerce.product.service.CPAttachmentFileEntryService cpAttachmentFileEntryService) {
this.cpAttachmentFileEntryService = cpAttachmentFileEntryService;
}
/**
* Returns the cp attachment file entry persistence.
*
* @return the cp attachment file entry persistence
*/
public CPAttachmentFileEntryPersistence getCPAttachmentFileEntryPersistence() {
return cpAttachmentFileEntryPersistence;
}
/**
* Sets the cp attachment file entry persistence.
*
* @param cpAttachmentFileEntryPersistence the cp attachment file entry persistence
*/
public void setCPAttachmentFileEntryPersistence(
CPAttachmentFileEntryPersistence cpAttachmentFileEntryPersistence) {
this.cpAttachmentFileEntryPersistence = cpAttachmentFileEntryPersistence;
}
/**
* Returns the cp attachment file entry finder.
*
* @return the cp attachment file entry finder
*/
public CPAttachmentFileEntryFinder getCPAttachmentFileEntryFinder() {
return cpAttachmentFileEntryFinder;
}
/**
* Sets the cp attachment file entry finder.
*
* @param cpAttachmentFileEntryFinder the cp attachment file entry finder
*/
public void setCPAttachmentFileEntryFinder(
CPAttachmentFileEntryFinder cpAttachmentFileEntryFinder) {
this.cpAttachmentFileEntryFinder = cpAttachmentFileEntryFinder;
}
/**
* Returns the cp definition local service.
*
* @return the cp definition local service
*/
public com.liferay.commerce.product.service.CPDefinitionLocalService getCPDefinitionLocalService() {
return cpDefinitionLocalService;
}
/**
* Sets the cp definition local service.
*
* @param cpDefinitionLocalService the cp definition local service
*/
public void setCPDefinitionLocalService(
com.liferay.commerce.product.service.CPDefinitionLocalService cpDefinitionLocalService) {
this.cpDefinitionLocalService = cpDefinitionLocalService;
}
/**
* Returns the cp definition remote service.
*
* @return the cp definition remote service
*/
public CPDefinitionService getCPDefinitionService() {
return cpDefinitionService;
}
/**
* Sets the cp definition remote service.
*
* @param cpDefinitionService the cp definition remote service
*/
public void setCPDefinitionService(CPDefinitionService cpDefinitionService) {
this.cpDefinitionService = cpDefinitionService;
}
/**
* Returns the cp definition persistence.
*
* @return the cp definition persistence
*/
public CPDefinitionPersistence getCPDefinitionPersistence() {
return cpDefinitionPersistence;
}
/**
* Sets the cp definition persistence.
*
* @param cpDefinitionPersistence the cp definition persistence
*/
public void setCPDefinitionPersistence(
CPDefinitionPersistence cpDefinitionPersistence) {
this.cpDefinitionPersistence = cpDefinitionPersistence;
}
/**
* Returns the cp definition finder.
*
* @return the cp definition finder
*/
public CPDefinitionFinder getCPDefinitionFinder() {
return cpDefinitionFinder;
}
/**
* Sets the cp definition finder.
*
* @param cpDefinitionFinder the cp definition finder
*/
public void setCPDefinitionFinder(CPDefinitionFinder cpDefinitionFinder) {
this.cpDefinitionFinder = cpDefinitionFinder;
}
/**
* Returns the cp definition link local service.
*
* @return the cp definition link local service
*/
public com.liferay.commerce.product.service.CPDefinitionLinkLocalService getCPDefinitionLinkLocalService() {
return cpDefinitionLinkLocalService;
}
/**
* Sets the cp definition link local service.
*
* @param cpDefinitionLinkLocalService the cp definition link local service
*/
public void setCPDefinitionLinkLocalService(
com.liferay.commerce.product.service.CPDefinitionLinkLocalService cpDefinitionLinkLocalService) {
this.cpDefinitionLinkLocalService = cpDefinitionLinkLocalService;
}
/**
* Returns the cp definition link remote service.
*
* @return the cp definition link remote service
*/
public com.liferay.commerce.product.service.CPDefinitionLinkService getCPDefinitionLinkService() {
return cpDefinitionLinkService;
}
/**
* Sets the cp definition link remote service.
*
* @param cpDefinitionLinkService the cp definition link remote service
*/
public void setCPDefinitionLinkService(
com.liferay.commerce.product.service.CPDefinitionLinkService cpDefinitionLinkService) {
this.cpDefinitionLinkService = cpDefinitionLinkService;
}
/**
* Returns the cp definition link persistence.
*
* @return the cp definition link persistence
*/
public CPDefinitionLinkPersistence getCPDefinitionLinkPersistence() {
return cpDefinitionLinkPersistence;
}
/**
* Sets the cp definition link persistence.
*
* @param cpDefinitionLinkPersistence the cp definition link persistence
*/
public void setCPDefinitionLinkPersistence(
CPDefinitionLinkPersistence cpDefinitionLinkPersistence) {
this.cpDefinitionLinkPersistence = cpDefinitionLinkPersistence;
}
/**
* Returns the cp definition localization persistence.
*
* @return the cp definition localization persistence
*/
public CPDefinitionLocalizationPersistence getCPDefinitionLocalizationPersistence() {
return cpDefinitionLocalizationPersistence;
}
/**
* Sets the cp definition localization persistence.
*
* @param cpDefinitionLocalizationPersistence the cp definition localization persistence
*/
public void setCPDefinitionLocalizationPersistence(
CPDefinitionLocalizationPersistence cpDefinitionLocalizationPersistence) {
this.cpDefinitionLocalizationPersistence = cpDefinitionLocalizationPersistence;
}
/**
* Returns the cp definition option rel local service.
*
* @return the cp definition option rel local service
*/
public com.liferay.commerce.product.service.CPDefinitionOptionRelLocalService getCPDefinitionOptionRelLocalService() {
return cpDefinitionOptionRelLocalService;
}
/**
* Sets the cp definition option rel local service.
*
* @param cpDefinitionOptionRelLocalService the cp definition option rel local service
*/
public void setCPDefinitionOptionRelLocalService(
com.liferay.commerce.product.service.CPDefinitionOptionRelLocalService cpDefinitionOptionRelLocalService) {
this.cpDefinitionOptionRelLocalService = cpDefinitionOptionRelLocalService;
}
/**
* Returns the cp definition option rel remote service.
*
* @return the cp definition option rel remote service
*/
public com.liferay.commerce.product.service.CPDefinitionOptionRelService getCPDefinitionOptionRelService() {
return cpDefinitionOptionRelService;
}
/**
* Sets the cp definition option rel remote service.
*
* @param cpDefinitionOptionRelService the cp definition option rel remote service
*/
public void setCPDefinitionOptionRelService(
com.liferay.commerce.product.service.CPDefinitionOptionRelService cpDefinitionOptionRelService) {
this.cpDefinitionOptionRelService = cpDefinitionOptionRelService;
}
/**
* Returns the cp definition option rel persistence.
*
* @return the cp definition option rel persistence
*/
public CPDefinitionOptionRelPersistence getCPDefinitionOptionRelPersistence() {
return cpDefinitionOptionRelPersistence;
}
/**
* Sets the cp definition option rel persistence.
*
* @param cpDefinitionOptionRelPersistence the cp definition option rel persistence
*/
public void setCPDefinitionOptionRelPersistence(
CPDefinitionOptionRelPersistence cpDefinitionOptionRelPersistence) {
this.cpDefinitionOptionRelPersistence = cpDefinitionOptionRelPersistence;
}
/**
* Returns the cp definition option value rel local service.
*
* @return the cp definition option value rel local service
*/
public com.liferay.commerce.product.service.CPDefinitionOptionValueRelLocalService getCPDefinitionOptionValueRelLocalService() {
return cpDefinitionOptionValueRelLocalService;
}
/**
* Sets the cp definition option value rel local service.
*
* @param cpDefinitionOptionValueRelLocalService the cp definition option value rel local service
*/
public void setCPDefinitionOptionValueRelLocalService(
com.liferay.commerce.product.service.CPDefinitionOptionValueRelLocalService cpDefinitionOptionValueRelLocalService) {
this.cpDefinitionOptionValueRelLocalService = cpDefinitionOptionValueRelLocalService;
}
/**
* Returns the cp definition option value rel remote service.
*
* @return the cp definition option value rel remote service
*/
public com.liferay.commerce.product.service.CPDefinitionOptionValueRelService getCPDefinitionOptionValueRelService() {
return cpDefinitionOptionValueRelService;
}
/**
* Sets the cp definition option value rel remote service.
*
* @param cpDefinitionOptionValueRelService the cp definition option value rel remote service
*/
public void setCPDefinitionOptionValueRelService(
com.liferay.commerce.product.service.CPDefinitionOptionValueRelService cpDefinitionOptionValueRelService) {
this.cpDefinitionOptionValueRelService = cpDefinitionOptionValueRelService;
}
/**
* Returns the cp definition option value rel persistence.
*
* @return the cp definition option value rel persistence
*/
public CPDefinitionOptionValueRelPersistence getCPDefinitionOptionValueRelPersistence() {
return cpDefinitionOptionValueRelPersistence;
}
/**
* Sets the cp definition option value rel persistence.
*
* @param cpDefinitionOptionValueRelPersistence the cp definition option value rel persistence
*/
public void setCPDefinitionOptionValueRelPersistence(
CPDefinitionOptionValueRelPersistence cpDefinitionOptionValueRelPersistence) {
this.cpDefinitionOptionValueRelPersistence = cpDefinitionOptionValueRelPersistence;
}
/**
* Returns the cp definition specification option value local service.
*
* @return the cp definition specification option value local service
*/
public com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueLocalService getCPDefinitionSpecificationOptionValueLocalService() {
return cpDefinitionSpecificationOptionValueLocalService;
}
/**
* Sets the cp definition specification option value local service.
*
* @param cpDefinitionSpecificationOptionValueLocalService the cp definition specification option value local service
*/
public void setCPDefinitionSpecificationOptionValueLocalService(
com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueLocalService cpDefinitionSpecificationOptionValueLocalService) {
this.cpDefinitionSpecificationOptionValueLocalService = cpDefinitionSpecificationOptionValueLocalService;
}
/**
* Returns the cp definition specification option value remote service.
*
* @return the cp definition specification option value remote service
*/
public com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueService getCPDefinitionSpecificationOptionValueService() {
return cpDefinitionSpecificationOptionValueService;
}
/**
* Sets the cp definition specification option value remote service.
*
* @param cpDefinitionSpecificationOptionValueService the cp definition specification option value remote service
*/
public void setCPDefinitionSpecificationOptionValueService(
com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueService cpDefinitionSpecificationOptionValueService) {
this.cpDefinitionSpecificationOptionValueService = cpDefinitionSpecificationOptionValueService;
}
/**
* Returns the cp definition specification option value persistence.
*
* @return the cp definition specification option value persistence
*/
public CPDefinitionSpecificationOptionValuePersistence getCPDefinitionSpecificationOptionValuePersistence() {
return cpDefinitionSpecificationOptionValuePersistence;
}
/**
* Sets the cp definition specification option value persistence.
*
* @param cpDefinitionSpecificationOptionValuePersistence the cp definition specification option value persistence
*/
public void setCPDefinitionSpecificationOptionValuePersistence(
CPDefinitionSpecificationOptionValuePersistence cpDefinitionSpecificationOptionValuePersistence) {
this.cpDefinitionSpecificationOptionValuePersistence = cpDefinitionSpecificationOptionValuePersistence;
}
/**
* Returns the cp display layout local service.
*
* @return the cp display layout local service
*/
public com.liferay.commerce.product.service.CPDisplayLayoutLocalService getCPDisplayLayoutLocalService() {
return cpDisplayLayoutLocalService;
}
/**
* Sets the cp display layout local service.
*
* @param cpDisplayLayoutLocalService the cp display layout local service
*/
public void setCPDisplayLayoutLocalService(
com.liferay.commerce.product.service.CPDisplayLayoutLocalService cpDisplayLayoutLocalService) {
this.cpDisplayLayoutLocalService = cpDisplayLayoutLocalService;
}
/**
* Returns the cp display layout persistence.
*
* @return the cp display layout persistence
*/
public CPDisplayLayoutPersistence getCPDisplayLayoutPersistence() {
return cpDisplayLayoutPersistence;
}
/**
* Sets the cp display layout persistence.
*
* @param cpDisplayLayoutPersistence the cp display layout persistence
*/
public void setCPDisplayLayoutPersistence(
CPDisplayLayoutPersistence cpDisplayLayoutPersistence) {
this.cpDisplayLayoutPersistence = cpDisplayLayoutPersistence;
}
/**
* Returns the cp friendly url entry local service.
*
* @return the cp friendly url entry local service
*/
public com.liferay.commerce.product.service.CPFriendlyURLEntryLocalService getCPFriendlyURLEntryLocalService() {
return cpFriendlyURLEntryLocalService;
}
/**
* Sets the cp friendly url entry local service.
*
* @param cpFriendlyURLEntryLocalService the cp friendly url entry local service
*/
public void setCPFriendlyURLEntryLocalService(
com.liferay.commerce.product.service.CPFriendlyURLEntryLocalService cpFriendlyURLEntryLocalService) {
this.cpFriendlyURLEntryLocalService = cpFriendlyURLEntryLocalService;
}
/**
* Returns the cp friendly url entry persistence.
*
* @return the cp friendly url entry persistence
*/
public CPFriendlyURLEntryPersistence getCPFriendlyURLEntryPersistence() {
return cpFriendlyURLEntryPersistence;
}
/**
* Sets the cp friendly url entry persistence.
*
* @param cpFriendlyURLEntryPersistence the cp friendly url entry persistence
*/
public void setCPFriendlyURLEntryPersistence(
CPFriendlyURLEntryPersistence cpFriendlyURLEntryPersistence) {
this.cpFriendlyURLEntryPersistence = cpFriendlyURLEntryPersistence;
}
/**
* Returns the cp instance local service.
*
* @return the cp instance local service
*/
public com.liferay.commerce.product.service.CPInstanceLocalService getCPInstanceLocalService() {
return cpInstanceLocalService;
}
/**
* Sets the cp instance local service.
*
* @param cpInstanceLocalService the cp instance local service
*/
public void setCPInstanceLocalService(
com.liferay.commerce.product.service.CPInstanceLocalService cpInstanceLocalService) {
this.cpInstanceLocalService = cpInstanceLocalService;
}
/**
* Returns the cp instance remote service.
*
* @return the cp instance remote service
*/
public com.liferay.commerce.product.service.CPInstanceService getCPInstanceService() {
return cpInstanceService;
}
/**
* Sets the cp instance remote service.
*
* @param cpInstanceService the cp instance remote service
*/
public void setCPInstanceService(
com.liferay.commerce.product.service.CPInstanceService cpInstanceService) {
this.cpInstanceService = cpInstanceService;
}
/**
* Returns the cp instance persistence.
*
* @return the cp instance persistence
*/
public CPInstancePersistence getCPInstancePersistence() {
return cpInstancePersistence;
}
/**
* Sets the cp instance persistence.
*
* @param cpInstancePersistence the cp instance persistence
*/
public void setCPInstancePersistence(
CPInstancePersistence cpInstancePersistence) {
this.cpInstancePersistence = cpInstancePersistence;
}
/**
* Returns the cp instance finder.
*
* @return the cp instance finder
*/
public CPInstanceFinder getCPInstanceFinder() {
return cpInstanceFinder;
}
/**
* Sets the cp instance finder.
*
* @param cpInstanceFinder the cp instance finder
*/
public void setCPInstanceFinder(CPInstanceFinder cpInstanceFinder) {
this.cpInstanceFinder = cpInstanceFinder;
}
/**
* Returns the cp measurement unit local service.
*
* @return the cp measurement unit local service
*/
public com.liferay.commerce.product.service.CPMeasurementUnitLocalService getCPMeasurementUnitLocalService() {
return cpMeasurementUnitLocalService;
}
/**
* Sets the cp measurement unit local service.
*
* @param cpMeasurementUnitLocalService the cp measurement unit local service
*/
public void setCPMeasurementUnitLocalService(
com.liferay.commerce.product.service.CPMeasurementUnitLocalService cpMeasurementUnitLocalService) {
this.cpMeasurementUnitLocalService = cpMeasurementUnitLocalService;
}
/**
* Returns the cp measurement unit remote service.
*
* @return the cp measurement unit remote service
*/
public com.liferay.commerce.product.service.CPMeasurementUnitService getCPMeasurementUnitService() {
return cpMeasurementUnitService;
}
/**
* Sets the cp measurement unit remote service.
*
* @param cpMeasurementUnitService the cp measurement unit remote service
*/
public void setCPMeasurementUnitService(
com.liferay.commerce.product.service.CPMeasurementUnitService cpMeasurementUnitService) {
this.cpMeasurementUnitService = cpMeasurementUnitService;
}
/**
* Returns the cp measurement unit persistence.
*
* @return the cp measurement unit persistence
*/
public CPMeasurementUnitPersistence getCPMeasurementUnitPersistence() {
return cpMeasurementUnitPersistence;
}
/**
* Sets the cp measurement unit persistence.
*
* @param cpMeasurementUnitPersistence the cp measurement unit persistence
*/
public void setCPMeasurementUnitPersistence(
CPMeasurementUnitPersistence cpMeasurementUnitPersistence) {
this.cpMeasurementUnitPersistence = cpMeasurementUnitPersistence;
}
/**
* Returns the cp option local service.
*
* @return the cp option local service
*/
public com.liferay.commerce.product.service.CPOptionLocalService getCPOptionLocalService() {
return cpOptionLocalService;
}
/**
* Sets the cp option local service.
*
* @param cpOptionLocalService the cp option local service
*/
public void setCPOptionLocalService(
com.liferay.commerce.product.service.CPOptionLocalService cpOptionLocalService) {
this.cpOptionLocalService = cpOptionLocalService;
}
/**
* Returns the cp option remote service.
*
* @return the cp option remote service
*/
public com.liferay.commerce.product.service.CPOptionService getCPOptionService() {
return cpOptionService;
}
/**
* Sets the cp option remote service.
*
* @param cpOptionService the cp option remote service
*/
public void setCPOptionService(
com.liferay.commerce.product.service.CPOptionService cpOptionService) {
this.cpOptionService = cpOptionService;
}
/**
* Returns the cp option persistence.
*
* @return the cp option persistence
*/
public CPOptionPersistence getCPOptionPersistence() {
return cpOptionPersistence;
}
/**
* Sets the cp option persistence.
*
* @param cpOptionPersistence the cp option persistence
*/
public void setCPOptionPersistence(CPOptionPersistence cpOptionPersistence) {
this.cpOptionPersistence = cpOptionPersistence;
}
/**
* Returns the cp option category local service.
*
* @return the cp option category local service
*/
public com.liferay.commerce.product.service.CPOptionCategoryLocalService getCPOptionCategoryLocalService() {
return cpOptionCategoryLocalService;
}
/**
* Sets the cp option category local service.
*
* @param cpOptionCategoryLocalService the cp option category local service
*/
public void setCPOptionCategoryLocalService(
com.liferay.commerce.product.service.CPOptionCategoryLocalService cpOptionCategoryLocalService) {
this.cpOptionCategoryLocalService = cpOptionCategoryLocalService;
}
/**
* Returns the cp option category remote service.
*
* @return the cp option category remote service
*/
public com.liferay.commerce.product.service.CPOptionCategoryService getCPOptionCategoryService() {
return cpOptionCategoryService;
}
/**
* Sets the cp option category remote service.
*
* @param cpOptionCategoryService the cp option category remote service
*/
public void setCPOptionCategoryService(
com.liferay.commerce.product.service.CPOptionCategoryService cpOptionCategoryService) {
this.cpOptionCategoryService = cpOptionCategoryService;
}
/**
* Returns the cp option category persistence.
*
* @return the cp option category persistence
*/
public CPOptionCategoryPersistence getCPOptionCategoryPersistence() {
return cpOptionCategoryPersistence;
}
/**
* Sets the cp option category persistence.
*
* @param cpOptionCategoryPersistence the cp option category persistence
*/
public void setCPOptionCategoryPersistence(
CPOptionCategoryPersistence cpOptionCategoryPersistence) {
this.cpOptionCategoryPersistence = cpOptionCategoryPersistence;
}
/**
* Returns the cp option value local service.
*
* @return the cp option value local service
*/
public com.liferay.commerce.product.service.CPOptionValueLocalService getCPOptionValueLocalService() {
return cpOptionValueLocalService;
}
/**
* Sets the cp option value local service.
*
* @param cpOptionValueLocalService the cp option value local service
*/
public void setCPOptionValueLocalService(
com.liferay.commerce.product.service.CPOptionValueLocalService cpOptionValueLocalService) {
this.cpOptionValueLocalService = cpOptionValueLocalService;
}
/**
* Returns the cp option value remote service.
*
* @return the cp option value remote service
*/
public com.liferay.commerce.product.service.CPOptionValueService getCPOptionValueService() {
return cpOptionValueService;
}
/**
* Sets the cp option value remote service.
*
* @param cpOptionValueService the cp option value remote service
*/
public void setCPOptionValueService(
com.liferay.commerce.product.service.CPOptionValueService cpOptionValueService) {
this.cpOptionValueService = cpOptionValueService;
}
/**
* Returns the cp option value persistence.
*
* @return the cp option value persistence
*/
public CPOptionValuePersistence getCPOptionValuePersistence() {
return cpOptionValuePersistence;
}
/**
* Sets the cp option value persistence.
*
* @param cpOptionValuePersistence the cp option value persistence
*/
public void setCPOptionValuePersistence(
CPOptionValuePersistence cpOptionValuePersistence) {
this.cpOptionValuePersistence = cpOptionValuePersistence;
}
/**
* Returns the cp rule local service.
*
* @return the cp rule local service
*/
public com.liferay.commerce.product.service.CPRuleLocalService getCPRuleLocalService() {
return cpRuleLocalService;
}
/**
* Sets the cp rule local service.
*
* @param cpRuleLocalService the cp rule local service
*/
public void setCPRuleLocalService(
com.liferay.commerce.product.service.CPRuleLocalService cpRuleLocalService) {
this.cpRuleLocalService = cpRuleLocalService;
}
/**
* Returns the cp rule remote service.
*
* @return the cp rule remote service
*/
public com.liferay.commerce.product.service.CPRuleService getCPRuleService() {
return cpRuleService;
}
/**
* Sets the cp rule remote service.
*
* @param cpRuleService the cp rule remote service
*/
public void setCPRuleService(
com.liferay.commerce.product.service.CPRuleService cpRuleService) {
this.cpRuleService = cpRuleService;
}
/**
* Returns the cp rule persistence.
*
* @return the cp rule persistence
*/
public CPRulePersistence getCPRulePersistence() {
return cpRulePersistence;
}
/**
* Sets the cp rule persistence.
*
* @param cpRulePersistence the cp rule persistence
*/
public void setCPRulePersistence(CPRulePersistence cpRulePersistence) {
this.cpRulePersistence = cpRulePersistence;
}
/**
* Returns the cp rule asset category rel local service.
*
* @return the cp rule asset category rel local service
*/
public com.liferay.commerce.product.service.CPRuleAssetCategoryRelLocalService getCPRuleAssetCategoryRelLocalService() {
return cpRuleAssetCategoryRelLocalService;
}
/**
* Sets the cp rule asset category rel local service.
*
* @param cpRuleAssetCategoryRelLocalService the cp rule asset category rel local service
*/
public void setCPRuleAssetCategoryRelLocalService(
com.liferay.commerce.product.service.CPRuleAssetCategoryRelLocalService cpRuleAssetCategoryRelLocalService) {
this.cpRuleAssetCategoryRelLocalService = cpRuleAssetCategoryRelLocalService;
}
/**
* Returns the cp rule asset category rel remote service.
*
* @return the cp rule asset category rel remote service
*/
public com.liferay.commerce.product.service.CPRuleAssetCategoryRelService getCPRuleAssetCategoryRelService() {
return cpRuleAssetCategoryRelService;
}
/**
* Sets the cp rule asset category rel remote service.
*
* @param cpRuleAssetCategoryRelService the cp rule asset category rel remote service
*/
public void setCPRuleAssetCategoryRelService(
com.liferay.commerce.product.service.CPRuleAssetCategoryRelService cpRuleAssetCategoryRelService) {
this.cpRuleAssetCategoryRelService = cpRuleAssetCategoryRelService;
}
/**
* Returns the cp rule asset category rel persistence.
*
* @return the cp rule asset category rel persistence
*/
public CPRuleAssetCategoryRelPersistence getCPRuleAssetCategoryRelPersistence() {
return cpRuleAssetCategoryRelPersistence;
}
/**
* Sets the cp rule asset category rel persistence.
*
* @param cpRuleAssetCategoryRelPersistence the cp rule asset category rel persistence
*/
public void setCPRuleAssetCategoryRelPersistence(
CPRuleAssetCategoryRelPersistence cpRuleAssetCategoryRelPersistence) {
this.cpRuleAssetCategoryRelPersistence = cpRuleAssetCategoryRelPersistence;
}
/**
* Returns the cp rule user segment rel local service.
*
* @return the cp rule user segment rel local service
*/
public com.liferay.commerce.product.service.CPRuleUserSegmentRelLocalService getCPRuleUserSegmentRelLocalService() {
return cpRuleUserSegmentRelLocalService;
}
/**
* Sets the cp rule user segment rel local service.
*
* @param cpRuleUserSegmentRelLocalService the cp rule user segment rel local service
*/
public void setCPRuleUserSegmentRelLocalService(
com.liferay.commerce.product.service.CPRuleUserSegmentRelLocalService cpRuleUserSegmentRelLocalService) {
this.cpRuleUserSegmentRelLocalService = cpRuleUserSegmentRelLocalService;
}
/**
* Returns the cp rule user segment rel remote service.
*
* @return the cp rule user segment rel remote service
*/
public com.liferay.commerce.product.service.CPRuleUserSegmentRelService getCPRuleUserSegmentRelService() {
return cpRuleUserSegmentRelService;
}
/**
* Sets the cp rule user segment rel remote service.
*
* @param cpRuleUserSegmentRelService the cp rule user segment rel remote service
*/
public void setCPRuleUserSegmentRelService(
com.liferay.commerce.product.service.CPRuleUserSegmentRelService cpRuleUserSegmentRelService) {
this.cpRuleUserSegmentRelService = cpRuleUserSegmentRelService;
}
/**
* Returns the cp rule user segment rel persistence.
*
* @return the cp rule user segment rel persistence
*/
public CPRuleUserSegmentRelPersistence getCPRuleUserSegmentRelPersistence() {
return cpRuleUserSegmentRelPersistence;
}
/**
* Sets the cp rule user segment rel persistence.
*
* @param cpRuleUserSegmentRelPersistence the cp rule user segment rel persistence
*/
public void setCPRuleUserSegmentRelPersistence(
CPRuleUserSegmentRelPersistence cpRuleUserSegmentRelPersistence) {
this.cpRuleUserSegmentRelPersistence = cpRuleUserSegmentRelPersistence;
}
/**
* Returns the cp specification option local service.
*
* @return the cp specification option local service
*/
public com.liferay.commerce.product.service.CPSpecificationOptionLocalService getCPSpecificationOptionLocalService() {
return cpSpecificationOptionLocalService;
}
/**
* Sets the cp specification option local service.
*
* @param cpSpecificationOptionLocalService the cp specification option local service
*/
public void setCPSpecificationOptionLocalService(
com.liferay.commerce.product.service.CPSpecificationOptionLocalService cpSpecificationOptionLocalService) {
this.cpSpecificationOptionLocalService = cpSpecificationOptionLocalService;
}
/**
* Returns the cp specification option remote service.
*
* @return the cp specification option remote service
*/
public com.liferay.commerce.product.service.CPSpecificationOptionService getCPSpecificationOptionService() {
return cpSpecificationOptionService;
}
/**
* Sets the cp specification option remote service.
*
* @param cpSpecificationOptionService the cp specification option remote service
*/
public void setCPSpecificationOptionService(
com.liferay.commerce.product.service.CPSpecificationOptionService cpSpecificationOptionService) {
this.cpSpecificationOptionService = cpSpecificationOptionService;
}
/**
* Returns the cp specification option persistence.
*
* @return the cp specification option persistence
*/
public CPSpecificationOptionPersistence getCPSpecificationOptionPersistence() {
return cpSpecificationOptionPersistence;
}
/**
* Sets the cp specification option persistence.
*
* @param cpSpecificationOptionPersistence the cp specification option persistence
*/
public void setCPSpecificationOptionPersistence(
CPSpecificationOptionPersistence cpSpecificationOptionPersistence) {
this.cpSpecificationOptionPersistence = cpSpecificationOptionPersistence;
}
/**
* Returns the cp tax category local service.
*
* @return the cp tax category local service
*/
public com.liferay.commerce.product.service.CPTaxCategoryLocalService getCPTaxCategoryLocalService() {
return cpTaxCategoryLocalService;
}
/**
* Sets the cp tax category local service.
*
* @param cpTaxCategoryLocalService the cp tax category local service
*/
public void setCPTaxCategoryLocalService(
com.liferay.commerce.product.service.CPTaxCategoryLocalService cpTaxCategoryLocalService) {
this.cpTaxCategoryLocalService = cpTaxCategoryLocalService;
}
/**
* Returns the cp tax category remote service.
*
* @return the cp tax category remote service
*/
public com.liferay.commerce.product.service.CPTaxCategoryService getCPTaxCategoryService() {
return cpTaxCategoryService;
}
/**
* Sets the cp tax category remote service.
*
* @param cpTaxCategoryService the cp tax category remote service
*/
public void setCPTaxCategoryService(
com.liferay.commerce.product.service.CPTaxCategoryService cpTaxCategoryService) {
this.cpTaxCategoryService = cpTaxCategoryService;
}
/**
* Returns the cp tax category persistence.
*
* @return the cp tax category persistence
*/
public CPTaxCategoryPersistence getCPTaxCategoryPersistence() {
return cpTaxCategoryPersistence;
}
/**
* Sets the cp tax category persistence.
*
* @param cpTaxCategoryPersistence the cp tax category persistence
*/
public void setCPTaxCategoryPersistence(
CPTaxCategoryPersistence cpTaxCategoryPersistence) {
this.cpTaxCategoryPersistence = cpTaxCategoryPersistence;
}
/**
* Returns the counter local service.
*
* @return the counter local service
*/
public com.liferay.counter.kernel.service.CounterLocalService getCounterLocalService() {
return counterLocalService;
}
/**
* Sets the counter local service.
*
* @param counterLocalService the counter local service
*/
public void setCounterLocalService(
com.liferay.counter.kernel.service.CounterLocalService counterLocalService) {
this.counterLocalService = counterLocalService;
}
/**
* Returns the class name local service.
*
* @return the class name local service
*/
public com.liferay.portal.kernel.service.ClassNameLocalService getClassNameLocalService() {
return classNameLocalService;
}
/**
* Sets the class name local service.
*
* @param classNameLocalService the class name local service
*/
public void setClassNameLocalService(
com.liferay.portal.kernel.service.ClassNameLocalService classNameLocalService) {
this.classNameLocalService = classNameLocalService;
}
/**
* Returns the class name remote service.
*
* @return the class name remote service
*/
public com.liferay.portal.kernel.service.ClassNameService getClassNameService() {
return classNameService;
}
/**
* Sets the class name remote service.
*
* @param classNameService the class name remote service
*/
public void setClassNameService(
com.liferay.portal.kernel.service.ClassNameService classNameService) {
this.classNameService = classNameService;
}
/**
* Returns the class name persistence.
*
* @return the class name persistence
*/
public ClassNamePersistence getClassNamePersistence() {
return classNamePersistence;
}
/**
* Sets the class name persistence.
*
* @param classNamePersistence the class name persistence
*/
public void setClassNamePersistence(
ClassNamePersistence classNamePersistence) {
this.classNamePersistence = classNamePersistence;
}
/**
* Returns the company local service.
*
* @return the company local service
*/
public com.liferay.portal.kernel.service.CompanyLocalService getCompanyLocalService() {
return companyLocalService;
}
/**
* Sets the company local service.
*
* @param companyLocalService the company local service
*/
public void setCompanyLocalService(
com.liferay.portal.kernel.service.CompanyLocalService companyLocalService) {
this.companyLocalService = companyLocalService;
}
/**
* Returns the company remote service.
*
* @return the company remote service
*/
public com.liferay.portal.kernel.service.CompanyService getCompanyService() {
return companyService;
}
/**
* Sets the company remote service.
*
* @param companyService the company remote service
*/
public void setCompanyService(
com.liferay.portal.kernel.service.CompanyService companyService) {
this.companyService = companyService;
}
/**
* Returns the company persistence.
*
* @return the company persistence
*/
public CompanyPersistence getCompanyPersistence() {
return companyPersistence;
}
/**
* Sets the company persistence.
*
* @param companyPersistence the company persistence
*/
public void setCompanyPersistence(CompanyPersistence companyPersistence) {
this.companyPersistence = companyPersistence;
}
/**
* Returns the group local service.
*
* @return the group local service
*/
public com.liferay.portal.kernel.service.GroupLocalService getGroupLocalService() {
return groupLocalService;
}
/**
* Sets the group local service.
*
* @param groupLocalService the group local service
*/
public void setGroupLocalService(
com.liferay.portal.kernel.service.GroupLocalService groupLocalService) {
this.groupLocalService = groupLocalService;
}
/**
* Returns the group remote service.
*
* @return the group remote service
*/
public com.liferay.portal.kernel.service.GroupService getGroupService() {
return groupService;
}
/**
* Sets the group remote service.
*
* @param groupService the group remote service
*/
public void setGroupService(
com.liferay.portal.kernel.service.GroupService groupService) {
this.groupService = groupService;
}
/**
* Returns the group persistence.
*
* @return the group persistence
*/
public GroupPersistence getGroupPersistence() {
return groupPersistence;
}
/**
* Sets the group persistence.
*
* @param groupPersistence the group persistence
*/
public void setGroupPersistence(GroupPersistence groupPersistence) {
this.groupPersistence = groupPersistence;
}
/**
* Returns the resource local service.
*
* @return the resource local service
*/
public com.liferay.portal.kernel.service.ResourceLocalService getResourceLocalService() {
return resourceLocalService;
}
/**
* Sets the resource local service.
*
* @param resourceLocalService the resource local service
*/
public void setResourceLocalService(
com.liferay.portal.kernel.service.ResourceLocalService resourceLocalService) {
this.resourceLocalService = resourceLocalService;
}
/**
* Returns the user local service.
*
* @return the user local service
*/
public com.liferay.portal.kernel.service.UserLocalService getUserLocalService() {
return userLocalService;
}
/**
* Sets the user local service.
*
* @param userLocalService the user local service
*/
public void setUserLocalService(
com.liferay.portal.kernel.service.UserLocalService userLocalService) {
this.userLocalService = userLocalService;
}
/**
* Returns the user remote service.
*
* @return the user remote service
*/
public com.liferay.portal.kernel.service.UserService getUserService() {
return userService;
}
/**
* Sets the user remote service.
*
* @param userService the user remote service
*/
public void setUserService(
com.liferay.portal.kernel.service.UserService userService) {
this.userService = userService;
}
/**
* Returns the user persistence.
*
* @return the user persistence
*/
public UserPersistence getUserPersistence() {
return userPersistence;
}
/**
* Sets the user persistence.
*
* @param userPersistence the user persistence
*/
public void setUserPersistence(UserPersistence userPersistence) {
this.userPersistence = userPersistence;
}
/**
* Returns the workflow instance link local service.
*
* @return the workflow instance link local service
*/
public com.liferay.portal.kernel.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
return workflowInstanceLinkLocalService;
}
/**
* Sets the workflow instance link local service.
*
* @param workflowInstanceLinkLocalService the workflow instance link local service
*/
public void setWorkflowInstanceLinkLocalService(
com.liferay.portal.kernel.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
}
/**
* Returns the workflow instance link persistence.
*
* @return the workflow instance link persistence
*/
public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
return workflowInstanceLinkPersistence;
}
/**
* Sets the workflow instance link persistence.
*
* @param workflowInstanceLinkPersistence the workflow instance link persistence
*/
public void setWorkflowInstanceLinkPersistence(
WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
}
/**
* Returns the asset category local service.
*
* @return the asset category local service
*/
public com.liferay.asset.kernel.service.AssetCategoryLocalService getAssetCategoryLocalService() {
return assetCategoryLocalService;
}
/**
* Sets the asset category local service.
*
* @param assetCategoryLocalService the asset category local service
*/
public void setAssetCategoryLocalService(
com.liferay.asset.kernel.service.AssetCategoryLocalService assetCategoryLocalService) {
this.assetCategoryLocalService = assetCategoryLocalService;
}
/**
* Returns the asset category remote service.
*
* @return the asset category remote service
*/
public com.liferay.asset.kernel.service.AssetCategoryService getAssetCategoryService() {
return assetCategoryService;
}
/**
* Sets the asset category remote service.
*
* @param assetCategoryService the asset category remote service
*/
public void setAssetCategoryService(
com.liferay.asset.kernel.service.AssetCategoryService assetCategoryService) {
this.assetCategoryService = assetCategoryService;
}
/**
* Returns the asset category persistence.
*
* @return the asset category persistence
*/
public AssetCategoryPersistence getAssetCategoryPersistence() {
return assetCategoryPersistence;
}
/**
* Sets the asset category persistence.
*
* @param assetCategoryPersistence the asset category persistence
*/
public void setAssetCategoryPersistence(
AssetCategoryPersistence assetCategoryPersistence) {
this.assetCategoryPersistence = assetCategoryPersistence;
}
/**
* Returns the asset entry local service.
*
* @return the asset entry local service
*/
public com.liferay.asset.kernel.service.AssetEntryLocalService getAssetEntryLocalService() {
return assetEntryLocalService;
}
/**
* Sets the asset entry local service.
*
* @param assetEntryLocalService the asset entry local service
*/
public void setAssetEntryLocalService(
com.liferay.asset.kernel.service.AssetEntryLocalService assetEntryLocalService) {
this.assetEntryLocalService = assetEntryLocalService;
}
/**
* Returns the asset entry remote service.
*
* @return the asset entry remote service
*/
public com.liferay.asset.kernel.service.AssetEntryService getAssetEntryService() {
return assetEntryService;
}
/**
* Sets the asset entry remote service.
*
* @param assetEntryService the asset entry remote service
*/
public void setAssetEntryService(
com.liferay.asset.kernel.service.AssetEntryService assetEntryService) {
this.assetEntryService = assetEntryService;
}
/**
* Returns the asset entry persistence.
*
* @return the asset entry persistence
*/
public AssetEntryPersistence getAssetEntryPersistence() {
return assetEntryPersistence;
}
/**
* Sets the asset entry persistence.
*
* @param assetEntryPersistence the asset entry persistence
*/
public void setAssetEntryPersistence(
AssetEntryPersistence assetEntryPersistence) {
this.assetEntryPersistence = assetEntryPersistence;
}
/**
* Returns the asset link local service.
*
* @return the asset link local service
*/
public com.liferay.asset.kernel.service.AssetLinkLocalService getAssetLinkLocalService() {
return assetLinkLocalService;
}
/**
* Sets the asset link local service.
*
* @param assetLinkLocalService the asset link local service
*/
public void setAssetLinkLocalService(
com.liferay.asset.kernel.service.AssetLinkLocalService assetLinkLocalService) {
this.assetLinkLocalService = assetLinkLocalService;
}
/**
* Returns the asset link persistence.
*
* @return the asset link persistence
*/
public AssetLinkPersistence getAssetLinkPersistence() {
return assetLinkPersistence;
}
/**
* Sets the asset link persistence.
*
* @param assetLinkPersistence the asset link persistence
*/
public void setAssetLinkPersistence(
AssetLinkPersistence assetLinkPersistence) {
this.assetLinkPersistence = assetLinkPersistence;
}
/**
* Returns the expando row local service.
*
* @return the expando row local service
*/
public com.liferay.expando.kernel.service.ExpandoRowLocalService getExpandoRowLocalService() {
return expandoRowLocalService;
}
/**
* Sets the expando row local service.
*
* @param expandoRowLocalService the expando row local service
*/
public void setExpandoRowLocalService(
com.liferay.expando.kernel.service.ExpandoRowLocalService expandoRowLocalService) {
this.expandoRowLocalService = expandoRowLocalService;
}
/**
* Returns the expando row persistence.
*
* @return the expando row persistence
*/
public ExpandoRowPersistence getExpandoRowPersistence() {
return expandoRowPersistence;
}
/**
* Sets the expando row persistence.
*
* @param expandoRowPersistence the expando row persistence
*/
public void setExpandoRowPersistence(
ExpandoRowPersistence expandoRowPersistence) {
this.expandoRowPersistence = expandoRowPersistence;
}
/**
* Returns the trash entry local service.
*
* @return the trash entry local service
*/
public com.liferay.trash.kernel.service.TrashEntryLocalService getTrashEntryLocalService() {
return trashEntryLocalService;
}
/**
* Sets the trash entry local service.
*
* @param trashEntryLocalService the trash entry local service
*/
public void setTrashEntryLocalService(
com.liferay.trash.kernel.service.TrashEntryLocalService trashEntryLocalService) {
this.trashEntryLocalService = trashEntryLocalService;
}
/**
* Returns the trash entry remote service.
*
* @return the trash entry remote service
*/
public com.liferay.trash.kernel.service.TrashEntryService getTrashEntryService() {
return trashEntryService;
}
/**
* Sets the trash entry remote service.
*
* @param trashEntryService the trash entry remote service
*/
public void setTrashEntryService(
com.liferay.trash.kernel.service.TrashEntryService trashEntryService) {
this.trashEntryService = trashEntryService;
}
/**
* Returns the trash entry persistence.
*
* @return the trash entry persistence
*/
public TrashEntryPersistence getTrashEntryPersistence() {
return trashEntryPersistence;
}
/**
* Sets the trash entry persistence.
*
* @param trashEntryPersistence the trash entry persistence
*/
public void setTrashEntryPersistence(
TrashEntryPersistence trashEntryPersistence) {
this.trashEntryPersistence = trashEntryPersistence;
}
public void afterPropertiesSet() {
}
public void destroy() {
}
/**
* Returns the OSGi service identifier.
*
* @return the OSGi service identifier
*/
@Override
public String getOSGiServiceIdentifier() {
return CPDefinitionService.class.getName();
}
protected Class> getModelClass() {
return CPDefinition.class;
}
protected String getModelClassName() {
return CPDefinition.class.getName();
}
/**
* Performs a SQL query.
*
* @param sql the sql query
*/
protected void runSQL(String sql) {
try {
DataSource dataSource = cpDefinitionPersistence.getDataSource();
DB db = DBManagerUtil.getDB();
sql = db.buildSQL(sql);
sql = PortalUtil.transformSQL(sql);
SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
sql);
sqlUpdate.update();
}
catch (Exception e) {
throw new SystemException(e);
}
}
@BeanReference(type = com.liferay.commerce.product.service.CPAttachmentFileEntryLocalService.class)
protected com.liferay.commerce.product.service.CPAttachmentFileEntryLocalService cpAttachmentFileEntryLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPAttachmentFileEntryService.class)
protected com.liferay.commerce.product.service.CPAttachmentFileEntryService cpAttachmentFileEntryService;
@BeanReference(type = CPAttachmentFileEntryPersistence.class)
protected CPAttachmentFileEntryPersistence cpAttachmentFileEntryPersistence;
@BeanReference(type = CPAttachmentFileEntryFinder.class)
protected CPAttachmentFileEntryFinder cpAttachmentFileEntryFinder;
@BeanReference(type = com.liferay.commerce.product.service.CPDefinitionLocalService.class)
protected com.liferay.commerce.product.service.CPDefinitionLocalService cpDefinitionLocalService;
@BeanReference(type = CPDefinitionService.class)
protected CPDefinitionService cpDefinitionService;
@BeanReference(type = CPDefinitionPersistence.class)
protected CPDefinitionPersistence cpDefinitionPersistence;
@BeanReference(type = CPDefinitionFinder.class)
protected CPDefinitionFinder cpDefinitionFinder;
@BeanReference(type = com.liferay.commerce.product.service.CPDefinitionLinkLocalService.class)
protected com.liferay.commerce.product.service.CPDefinitionLinkLocalService cpDefinitionLinkLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPDefinitionLinkService.class)
protected com.liferay.commerce.product.service.CPDefinitionLinkService cpDefinitionLinkService;
@BeanReference(type = CPDefinitionLinkPersistence.class)
protected CPDefinitionLinkPersistence cpDefinitionLinkPersistence;
@BeanReference(type = CPDefinitionLocalizationPersistence.class)
protected CPDefinitionLocalizationPersistence cpDefinitionLocalizationPersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPDefinitionOptionRelLocalService.class)
protected com.liferay.commerce.product.service.CPDefinitionOptionRelLocalService cpDefinitionOptionRelLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPDefinitionOptionRelService.class)
protected com.liferay.commerce.product.service.CPDefinitionOptionRelService cpDefinitionOptionRelService;
@BeanReference(type = CPDefinitionOptionRelPersistence.class)
protected CPDefinitionOptionRelPersistence cpDefinitionOptionRelPersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPDefinitionOptionValueRelLocalService.class)
protected com.liferay.commerce.product.service.CPDefinitionOptionValueRelLocalService cpDefinitionOptionValueRelLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPDefinitionOptionValueRelService.class)
protected com.liferay.commerce.product.service.CPDefinitionOptionValueRelService cpDefinitionOptionValueRelService;
@BeanReference(type = CPDefinitionOptionValueRelPersistence.class)
protected CPDefinitionOptionValueRelPersistence cpDefinitionOptionValueRelPersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueLocalService.class)
protected com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueLocalService cpDefinitionSpecificationOptionValueLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueService.class)
protected com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueService cpDefinitionSpecificationOptionValueService;
@BeanReference(type = CPDefinitionSpecificationOptionValuePersistence.class)
protected CPDefinitionSpecificationOptionValuePersistence cpDefinitionSpecificationOptionValuePersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPDisplayLayoutLocalService.class)
protected com.liferay.commerce.product.service.CPDisplayLayoutLocalService cpDisplayLayoutLocalService;
@BeanReference(type = CPDisplayLayoutPersistence.class)
protected CPDisplayLayoutPersistence cpDisplayLayoutPersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPFriendlyURLEntryLocalService.class)
protected com.liferay.commerce.product.service.CPFriendlyURLEntryLocalService cpFriendlyURLEntryLocalService;
@BeanReference(type = CPFriendlyURLEntryPersistence.class)
protected CPFriendlyURLEntryPersistence cpFriendlyURLEntryPersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPInstanceLocalService.class)
protected com.liferay.commerce.product.service.CPInstanceLocalService cpInstanceLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPInstanceService.class)
protected com.liferay.commerce.product.service.CPInstanceService cpInstanceService;
@BeanReference(type = CPInstancePersistence.class)
protected CPInstancePersistence cpInstancePersistence;
@BeanReference(type = CPInstanceFinder.class)
protected CPInstanceFinder cpInstanceFinder;
@BeanReference(type = com.liferay.commerce.product.service.CPMeasurementUnitLocalService.class)
protected com.liferay.commerce.product.service.CPMeasurementUnitLocalService cpMeasurementUnitLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPMeasurementUnitService.class)
protected com.liferay.commerce.product.service.CPMeasurementUnitService cpMeasurementUnitService;
@BeanReference(type = CPMeasurementUnitPersistence.class)
protected CPMeasurementUnitPersistence cpMeasurementUnitPersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPOptionLocalService.class)
protected com.liferay.commerce.product.service.CPOptionLocalService cpOptionLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPOptionService.class)
protected com.liferay.commerce.product.service.CPOptionService cpOptionService;
@BeanReference(type = CPOptionPersistence.class)
protected CPOptionPersistence cpOptionPersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPOptionCategoryLocalService.class)
protected com.liferay.commerce.product.service.CPOptionCategoryLocalService cpOptionCategoryLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPOptionCategoryService.class)
protected com.liferay.commerce.product.service.CPOptionCategoryService cpOptionCategoryService;
@BeanReference(type = CPOptionCategoryPersistence.class)
protected CPOptionCategoryPersistence cpOptionCategoryPersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPOptionValueLocalService.class)
protected com.liferay.commerce.product.service.CPOptionValueLocalService cpOptionValueLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPOptionValueService.class)
protected com.liferay.commerce.product.service.CPOptionValueService cpOptionValueService;
@BeanReference(type = CPOptionValuePersistence.class)
protected CPOptionValuePersistence cpOptionValuePersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPRuleLocalService.class)
protected com.liferay.commerce.product.service.CPRuleLocalService cpRuleLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPRuleService.class)
protected com.liferay.commerce.product.service.CPRuleService cpRuleService;
@BeanReference(type = CPRulePersistence.class)
protected CPRulePersistence cpRulePersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPRuleAssetCategoryRelLocalService.class)
protected com.liferay.commerce.product.service.CPRuleAssetCategoryRelLocalService cpRuleAssetCategoryRelLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPRuleAssetCategoryRelService.class)
protected com.liferay.commerce.product.service.CPRuleAssetCategoryRelService cpRuleAssetCategoryRelService;
@BeanReference(type = CPRuleAssetCategoryRelPersistence.class)
protected CPRuleAssetCategoryRelPersistence cpRuleAssetCategoryRelPersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPRuleUserSegmentRelLocalService.class)
protected com.liferay.commerce.product.service.CPRuleUserSegmentRelLocalService cpRuleUserSegmentRelLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPRuleUserSegmentRelService.class)
protected com.liferay.commerce.product.service.CPRuleUserSegmentRelService cpRuleUserSegmentRelService;
@BeanReference(type = CPRuleUserSegmentRelPersistence.class)
protected CPRuleUserSegmentRelPersistence cpRuleUserSegmentRelPersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPSpecificationOptionLocalService.class)
protected com.liferay.commerce.product.service.CPSpecificationOptionLocalService cpSpecificationOptionLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPSpecificationOptionService.class)
protected com.liferay.commerce.product.service.CPSpecificationOptionService cpSpecificationOptionService;
@BeanReference(type = CPSpecificationOptionPersistence.class)
protected CPSpecificationOptionPersistence cpSpecificationOptionPersistence;
@BeanReference(type = com.liferay.commerce.product.service.CPTaxCategoryLocalService.class)
protected com.liferay.commerce.product.service.CPTaxCategoryLocalService cpTaxCategoryLocalService;
@BeanReference(type = com.liferay.commerce.product.service.CPTaxCategoryService.class)
protected com.liferay.commerce.product.service.CPTaxCategoryService cpTaxCategoryService;
@BeanReference(type = CPTaxCategoryPersistence.class)
protected CPTaxCategoryPersistence cpTaxCategoryPersistence;
@ServiceReference(type = com.liferay.counter.kernel.service.CounterLocalService.class)
protected com.liferay.counter.kernel.service.CounterLocalService counterLocalService;
@ServiceReference(type = com.liferay.portal.kernel.service.ClassNameLocalService.class)
protected com.liferay.portal.kernel.service.ClassNameLocalService classNameLocalService;
@ServiceReference(type = com.liferay.portal.kernel.service.ClassNameService.class)
protected com.liferay.portal.kernel.service.ClassNameService classNameService;
@ServiceReference(type = ClassNamePersistence.class)
protected ClassNamePersistence classNamePersistence;
@ServiceReference(type = com.liferay.portal.kernel.service.CompanyLocalService.class)
protected com.liferay.portal.kernel.service.CompanyLocalService companyLocalService;
@ServiceReference(type = com.liferay.portal.kernel.service.CompanyService.class)
protected com.liferay.portal.kernel.service.CompanyService companyService;
@ServiceReference(type = CompanyPersistence.class)
protected CompanyPersistence companyPersistence;
@ServiceReference(type = com.liferay.portal.kernel.service.GroupLocalService.class)
protected com.liferay.portal.kernel.service.GroupLocalService groupLocalService;
@ServiceReference(type = com.liferay.portal.kernel.service.GroupService.class)
protected com.liferay.portal.kernel.service.GroupService groupService;
@ServiceReference(type = GroupPersistence.class)
protected GroupPersistence groupPersistence;
@ServiceReference(type = com.liferay.portal.kernel.service.ResourceLocalService.class)
protected com.liferay.portal.kernel.service.ResourceLocalService resourceLocalService;
@ServiceReference(type = com.liferay.portal.kernel.service.UserLocalService.class)
protected com.liferay.portal.kernel.service.UserLocalService userLocalService;
@ServiceReference(type = com.liferay.portal.kernel.service.UserService.class)
protected com.liferay.portal.kernel.service.UserService userService;
@ServiceReference(type = UserPersistence.class)
protected UserPersistence userPersistence;
@ServiceReference(type = com.liferay.portal.kernel.service.WorkflowInstanceLinkLocalService.class)
protected com.liferay.portal.kernel.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
@ServiceReference(type = WorkflowInstanceLinkPersistence.class)
protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
@ServiceReference(type = com.liferay.asset.kernel.service.AssetCategoryLocalService.class)
protected com.liferay.asset.kernel.service.AssetCategoryLocalService assetCategoryLocalService;
@ServiceReference(type = com.liferay.asset.kernel.service.AssetCategoryService.class)
protected com.liferay.asset.kernel.service.AssetCategoryService assetCategoryService;
@ServiceReference(type = AssetCategoryPersistence.class)
protected AssetCategoryPersistence assetCategoryPersistence;
@ServiceReference(type = com.liferay.asset.kernel.service.AssetEntryLocalService.class)
protected com.liferay.asset.kernel.service.AssetEntryLocalService assetEntryLocalService;
@ServiceReference(type = com.liferay.asset.kernel.service.AssetEntryService.class)
protected com.liferay.asset.kernel.service.AssetEntryService assetEntryService;
@ServiceReference(type = AssetEntryPersistence.class)
protected AssetEntryPersistence assetEntryPersistence;
@ServiceReference(type = com.liferay.asset.kernel.service.AssetLinkLocalService.class)
protected com.liferay.asset.kernel.service.AssetLinkLocalService assetLinkLocalService;
@ServiceReference(type = AssetLinkPersistence.class)
protected AssetLinkPersistence assetLinkPersistence;
@ServiceReference(type = com.liferay.expando.kernel.service.ExpandoRowLocalService.class)
protected com.liferay.expando.kernel.service.ExpandoRowLocalService expandoRowLocalService;
@ServiceReference(type = ExpandoRowPersistence.class)
protected ExpandoRowPersistence expandoRowPersistence;
@ServiceReference(type = com.liferay.trash.kernel.service.TrashEntryLocalService.class)
protected com.liferay.trash.kernel.service.TrashEntryLocalService trashEntryLocalService;
@ServiceReference(type = com.liferay.trash.kernel.service.TrashEntryService.class)
protected com.liferay.trash.kernel.service.TrashEntryService trashEntryService;
@ServiceReference(type = TrashEntryPersistence.class)
protected TrashEntryPersistence trashEntryPersistence;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy