All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.commerce.product.service.base.CPDefinitionServiceBaseImpl Maven / Gradle / Ivy

There is a newer version: 6.0.151
Show newest version
/**
 * 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.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.CPInstanceOptionValueRelFinder;
import com.liferay.commerce.product.service.persistence.CPInstanceOptionValueRelPersistence;
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.CPSpecificationOptionPersistence;
import com.liferay.commerce.product.service.persistence.CPTaxCategoryFinder;
import com.liferay.commerce.product.service.persistence.CPTaxCategoryPersistence;
import com.liferay.commerce.product.service.persistence.CProductPersistence;
import com.liferay.commerce.product.service.persistence.CommerceCatalogPersistence;
import com.liferay.commerce.product.service.persistence.CommerceChannelPersistence;
import com.liferay.commerce.product.service.persistence.CommerceChannelRelFinder;
import com.liferay.commerce.product.service.persistence.CommerceChannelRelPersistence;
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.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 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 * @generated */ public abstract class CPDefinitionServiceBaseImpl extends BaseServiceImpl implements CPDefinitionService, IdentifiableOSGiService { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. Use CPDefinitionService via injection or a org.osgi.util.tracker.ServiceTracker or use com.liferay.commerce.product.service.CPDefinitionServiceUtil. */ /** * Returns the commerce catalog local service. * * @return the commerce catalog local service */ public com.liferay.commerce.product.service.CommerceCatalogLocalService getCommerceCatalogLocalService() { return commerceCatalogLocalService; } /** * Sets the commerce catalog local service. * * @param commerceCatalogLocalService the commerce catalog local service */ public void setCommerceCatalogLocalService( com.liferay.commerce.product.service.CommerceCatalogLocalService commerceCatalogLocalService) { this.commerceCatalogLocalService = commerceCatalogLocalService; } /** * Returns the commerce catalog remote service. * * @return the commerce catalog remote service */ public com.liferay.commerce.product.service.CommerceCatalogService getCommerceCatalogService() { return commerceCatalogService; } /** * Sets the commerce catalog remote service. * * @param commerceCatalogService the commerce catalog remote service */ public void setCommerceCatalogService( com.liferay.commerce.product.service.CommerceCatalogService commerceCatalogService) { this.commerceCatalogService = commerceCatalogService; } /** * Returns the commerce catalog persistence. * * @return the commerce catalog persistence */ public CommerceCatalogPersistence getCommerceCatalogPersistence() { return commerceCatalogPersistence; } /** * Sets the commerce catalog persistence. * * @param commerceCatalogPersistence the commerce catalog persistence */ public void setCommerceCatalogPersistence( CommerceCatalogPersistence commerceCatalogPersistence) { this.commerceCatalogPersistence = commerceCatalogPersistence; } /** * Returns the commerce channel local service. * * @return the commerce channel local service */ public com.liferay.commerce.product.service.CommerceChannelLocalService getCommerceChannelLocalService() { return commerceChannelLocalService; } /** * Sets the commerce channel local service. * * @param commerceChannelLocalService the commerce channel local service */ public void setCommerceChannelLocalService( com.liferay.commerce.product.service.CommerceChannelLocalService commerceChannelLocalService) { this.commerceChannelLocalService = commerceChannelLocalService; } /** * Returns the commerce channel remote service. * * @return the commerce channel remote service */ public com.liferay.commerce.product.service.CommerceChannelService getCommerceChannelService() { return commerceChannelService; } /** * Sets the commerce channel remote service. * * @param commerceChannelService the commerce channel remote service */ public void setCommerceChannelService( com.liferay.commerce.product.service.CommerceChannelService commerceChannelService) { this.commerceChannelService = commerceChannelService; } /** * Returns the commerce channel persistence. * * @return the commerce channel persistence */ public CommerceChannelPersistence getCommerceChannelPersistence() { return commerceChannelPersistence; } /** * Sets the commerce channel persistence. * * @param commerceChannelPersistence the commerce channel persistence */ public void setCommerceChannelPersistence( CommerceChannelPersistence commerceChannelPersistence) { this.commerceChannelPersistence = commerceChannelPersistence; } /** * Returns the commerce channel rel local service. * * @return the commerce channel rel local service */ public com.liferay.commerce.product.service.CommerceChannelRelLocalService getCommerceChannelRelLocalService() { return commerceChannelRelLocalService; } /** * Sets the commerce channel rel local service. * * @param commerceChannelRelLocalService the commerce channel rel local service */ public void setCommerceChannelRelLocalService( com.liferay.commerce.product.service.CommerceChannelRelLocalService commerceChannelRelLocalService) { this.commerceChannelRelLocalService = commerceChannelRelLocalService; } /** * Returns the commerce channel rel remote service. * * @return the commerce channel rel remote service */ public com.liferay.commerce.product.service.CommerceChannelRelService getCommerceChannelRelService() { return commerceChannelRelService; } /** * Sets the commerce channel rel remote service. * * @param commerceChannelRelService the commerce channel rel remote service */ public void setCommerceChannelRelService( com.liferay.commerce.product.service.CommerceChannelRelService commerceChannelRelService) { this.commerceChannelRelService = commerceChannelRelService; } /** * Returns the commerce channel rel persistence. * * @return the commerce channel rel persistence */ public CommerceChannelRelPersistence getCommerceChannelRelPersistence() { return commerceChannelRelPersistence; } /** * Sets the commerce channel rel persistence. * * @param commerceChannelRelPersistence the commerce channel rel persistence */ public void setCommerceChannelRelPersistence( CommerceChannelRelPersistence commerceChannelRelPersistence) { this.commerceChannelRelPersistence = commerceChannelRelPersistence; } /** * Returns the commerce channel rel finder. * * @return the commerce channel rel finder */ public CommerceChannelRelFinder getCommerceChannelRelFinder() { return commerceChannelRelFinder; } /** * Sets the commerce channel rel finder. * * @param commerceChannelRelFinder the commerce channel rel finder */ public void setCommerceChannelRelFinder( CommerceChannelRelFinder commerceChannelRelFinder) { this.commerceChannelRelFinder = commerceChannelRelFinder; } /** * 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 remote service. * * @return the cp display layout remote service */ public com.liferay.commerce.product.service.CPDisplayLayoutService getCPDisplayLayoutService() { return cpDisplayLayoutService; } /** * Sets the cp display layout remote service. * * @param cpDisplayLayoutService the cp display layout remote service */ public void setCPDisplayLayoutService( com.liferay.commerce.product.service.CPDisplayLayoutService cpDisplayLayoutService) { this.cpDisplayLayoutService = cpDisplayLayoutService; } /** * 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 */ @SuppressWarnings("deprecation") 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 */ @SuppressWarnings("deprecation") 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 instance option value rel local service. * * @return the cp instance option value rel local service */ public com.liferay.commerce.product.service. CPInstanceOptionValueRelLocalService getCPInstanceOptionValueRelLocalService() { return cpInstanceOptionValueRelLocalService; } /** * Sets the cp instance option value rel local service. * * @param cpInstanceOptionValueRelLocalService the cp instance option value rel local service */ public void setCPInstanceOptionValueRelLocalService( com.liferay.commerce.product.service. CPInstanceOptionValueRelLocalService cpInstanceOptionValueRelLocalService) { this.cpInstanceOptionValueRelLocalService = cpInstanceOptionValueRelLocalService; } /** * Returns the cp instance option value rel remote service. * * @return the cp instance option value rel remote service */ public com.liferay.commerce.product.service.CPInstanceOptionValueRelService getCPInstanceOptionValueRelService() { return cpInstanceOptionValueRelService; } /** * Sets the cp instance option value rel remote service. * * @param cpInstanceOptionValueRelService the cp instance option value rel remote service */ public void setCPInstanceOptionValueRelService( com.liferay.commerce.product.service.CPInstanceOptionValueRelService cpInstanceOptionValueRelService) { this.cpInstanceOptionValueRelService = cpInstanceOptionValueRelService; } /** * Returns the cp instance option value rel persistence. * * @return the cp instance option value rel persistence */ public CPInstanceOptionValueRelPersistence getCPInstanceOptionValueRelPersistence() { return cpInstanceOptionValueRelPersistence; } /** * Sets the cp instance option value rel persistence. * * @param cpInstanceOptionValueRelPersistence the cp instance option value rel persistence */ public void setCPInstanceOptionValueRelPersistence( CPInstanceOptionValueRelPersistence cpInstanceOptionValueRelPersistence) { this.cpInstanceOptionValueRelPersistence = cpInstanceOptionValueRelPersistence; } /** * Returns the cp instance option value rel finder. * * @return the cp instance option value rel finder */ public CPInstanceOptionValueRelFinder getCPInstanceOptionValueRelFinder() { return cpInstanceOptionValueRelFinder; } /** * Sets the cp instance option value rel finder. * * @param cpInstanceOptionValueRelFinder the cp instance option value rel finder */ public void setCPInstanceOptionValueRelFinder( CPInstanceOptionValueRelFinder cpInstanceOptionValueRelFinder) { this.cpInstanceOptionValueRelFinder = cpInstanceOptionValueRelFinder; } /** * 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 c product local service. * * @return the c product local service */ public com.liferay.commerce.product.service.CProductLocalService getCProductLocalService() { return cProductLocalService; } /** * Sets the c product local service. * * @param cProductLocalService the c product local service */ public void setCProductLocalService( com.liferay.commerce.product.service.CProductLocalService cProductLocalService) { this.cProductLocalService = cProductLocalService; } /** * Returns the c product persistence. * * @return the c product persistence */ public CProductPersistence getCProductPersistence() { return cProductPersistence; } /** * Sets the c product persistence. * * @param cProductPersistence the c product persistence */ public void setCProductPersistence( CProductPersistence cProductPersistence) { this.cProductPersistence = cProductPersistence; } /** * 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 cp tax category finder. * * @return the cp tax category finder */ public CPTaxCategoryFinder getCPTaxCategoryFinder() { return cpTaxCategoryFinder; } /** * Sets the cp tax category finder. * * @param cpTaxCategoryFinder the cp tax category finder */ public void setCPTaxCategoryFinder( CPTaxCategoryFinder cpTaxCategoryFinder) { this.cpTaxCategoryFinder = cpTaxCategoryFinder; } /** * 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 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 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; } 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 exception) { throw new SystemException(exception); } } @BeanReference( type = com.liferay.commerce.product.service.CommerceCatalogLocalService.class ) protected com.liferay.commerce.product.service.CommerceCatalogLocalService commerceCatalogLocalService; @BeanReference( type = com.liferay.commerce.product.service.CommerceCatalogService.class ) protected com.liferay.commerce.product.service.CommerceCatalogService commerceCatalogService; @BeanReference(type = CommerceCatalogPersistence.class) protected CommerceCatalogPersistence commerceCatalogPersistence; @BeanReference( type = com.liferay.commerce.product.service.CommerceChannelLocalService.class ) protected com.liferay.commerce.product.service.CommerceChannelLocalService commerceChannelLocalService; @BeanReference( type = com.liferay.commerce.product.service.CommerceChannelService.class ) protected com.liferay.commerce.product.service.CommerceChannelService commerceChannelService; @BeanReference(type = CommerceChannelPersistence.class) protected CommerceChannelPersistence commerceChannelPersistence; @BeanReference( type = com.liferay.commerce.product.service.CommerceChannelRelLocalService.class ) protected com.liferay.commerce.product.service.CommerceChannelRelLocalService commerceChannelRelLocalService; @BeanReference( type = com.liferay.commerce.product.service.CommerceChannelRelService.class ) protected com.liferay.commerce.product.service.CommerceChannelRelService commerceChannelRelService; @BeanReference(type = CommerceChannelRelPersistence.class) protected CommerceChannelRelPersistence commerceChannelRelPersistence; @BeanReference(type = CommerceChannelRelFinder.class) protected CommerceChannelRelFinder commerceChannelRelFinder; @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 = com.liferay.commerce.product.service.CPDisplayLayoutService.class ) protected com.liferay.commerce.product.service.CPDisplayLayoutService cpDisplayLayoutService; @BeanReference(type = CPDisplayLayoutPersistence.class) protected CPDisplayLayoutPersistence cpDisplayLayoutPersistence; @BeanReference( type = com.liferay.commerce.product.service.CPFriendlyURLEntryLocalService.class ) @SuppressWarnings("deprecation") 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.CPInstanceOptionValueRelLocalService.class ) protected com.liferay.commerce.product.service. CPInstanceOptionValueRelLocalService cpInstanceOptionValueRelLocalService; @BeanReference( type = com.liferay.commerce.product.service.CPInstanceOptionValueRelService.class ) protected com.liferay.commerce.product.service.CPInstanceOptionValueRelService cpInstanceOptionValueRelService; @BeanReference(type = CPInstanceOptionValueRelPersistence.class) protected CPInstanceOptionValueRelPersistence cpInstanceOptionValueRelPersistence; @BeanReference(type = CPInstanceOptionValueRelFinder.class) protected CPInstanceOptionValueRelFinder cpInstanceOptionValueRelFinder; @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.CProductLocalService.class ) protected com.liferay.commerce.product.service.CProductLocalService cProductLocalService; @BeanReference(type = CProductPersistence.class) protected CProductPersistence cProductPersistence; @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; @BeanReference(type = CPTaxCategoryFinder.class) protected CPTaxCategoryFinder cpTaxCategoryFinder; @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.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.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; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy