
com.liferay.commerce.product.service.impl.CPInstanceOptionValueRelServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.commerce.product.service
Show all versions of com.liferay.commerce.product.service
Liferay Commerce Product Service
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.commerce.product.service.impl;
import com.liferay.commerce.product.service.base.CPInstanceOptionValueRelServiceBaseImpl;
import com.liferay.portal.aop.AopService;
import org.osgi.service.component.annotations.Component;
/**
* The implementation of the cp instance option value rel remote service.
*
*
* All custom service methods should be put in this class. Whenever methods are
* added, rerun ServiceBuilder to copy their definitions into the
* com.liferay.commerce.product.service.CPInstanceOptionValueRelService
* interface.
This is a remote service. Methods of this service are expected
* to have security checks based on the propagated JAAS credentials because this
* service can be accessed remotely.
*
*
* @author Marco Leo
* @see CPInstanceOptionValueRelServiceBaseImpl
*/
@Component(
property = {
"json.web.service.context.name=commerce",
"json.web.service.context.path=CPInstanceOptionValueRel"
},
service = AopService.class
)
public class CPInstanceOptionValueRelServiceImpl
extends CPInstanceOptionValueRelServiceBaseImpl {
/**
* NOTE FOR DEVELOPERS:
*
* Never reference this class directly. Always use com.liferay.commerce.product.service.CPInstanceOptionValueRelServiceUtil
to access the cp instance option value rel remote service.
*/
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy