com.liferay.commerce.pricing.service.impl.CommercePricingClassServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.commerce.pricing.service
Show all versions of com.liferay.commerce.pricing.service
Liferay Commerce Pricing Service
/**
* 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.pricing.service.impl;
import com.liferay.commerce.pricing.constants.CommercePricingClassActionKeys;
import com.liferay.commerce.pricing.model.CommercePricingClass;
import com.liferay.commerce.pricing.service.base.CommercePricingClassServiceBaseImpl;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.service.permission.PortalPermissionUtil;
import com.liferay.portal.kernel.util.OrderByComparator;
import java.util.List;
/**
* @author Riccardo Alberti
* @see CommercePricingClassServiceBaseImpl
*/
public class CommercePricingClassServiceImpl
extends CommercePricingClassServiceBaseImpl {
@Override
public CommercePricingClass addCommercePricingClass(
long userId, long groupId, String title, String description,
ServiceContext serviceContext)
throws PortalException {
PortalPermissionUtil.check(
getPermissionChecker(),
CommercePricingClassActionKeys.MANAGE_COMMERCE_PRICING_CLASSES);
return commercePricingClassLocalService.addCommercePricingClass(
userId, groupId, title, description, serviceContext);
}
@Override
public CommercePricingClass deleteCommercePricingClass(
long commercePricingClassId)
throws PortalException {
PortalPermissionUtil.check(
getPermissionChecker(),
CommercePricingClassActionKeys.MANAGE_COMMERCE_PRICING_CLASSES);
return commercePricingClassLocalService.deleteCommercePricingClass(
commercePricingClassId);
}
@Override
public CommercePricingClass fetchByExternalReferenceCode(
long companyId, String externalReferenceCode)
throws PortalException {
CommercePricingClass commercePricingClass =
commercePricingClassLocalService.fetchByExternalReferenceCode(
companyId, externalReferenceCode);
if (commercePricingClass != null) {
PortalPermissionUtil.check(
getPermissionChecker(),
CommercePricingClassActionKeys.VIEW_COMMERCE_PRICING_CLASSES);
}
return commercePricingClass;
}
@Override
public CommercePricingClass fetchCommercePricingClass(
long commercePricingClassId)
throws PortalException {
CommercePricingClass commercePricingClass =
commercePricingClassLocalService.fetchCommercePricingClass(
commercePricingClassId);
if (commercePricingClass != null) {
PortalPermissionUtil.check(
getPermissionChecker(),
CommercePricingClassActionKeys.VIEW_COMMERCE_PRICING_CLASSES);
}
return commercePricingClass;
}
@Override
public CommercePricingClass getCommercePricingClass(
long commercePricingClassId)
throws PortalException {
PortalPermissionUtil.check(
getPermissionChecker(),
CommercePricingClassActionKeys.VIEW_COMMERCE_PRICING_CLASSES);
return commercePricingClassLocalService.getCommercePricingClass(
commercePricingClassId);
}
@Override
public List getCommercePricingClasses(
long companyId, int start, int end,
OrderByComparator orderByComparator)
throws PortalException {
return commercePricingClassLocalService.getCommercePricingClasses(
companyId, start, end, orderByComparator);
}
@Override
public int getCommercePricingClassesCount(long companyId)
throws PortalException {
return commercePricingClassLocalService.getCommercePricingClassesCount(
companyId);
}
@Override
public CommercePricingClass updateCommercePricingClass(
long commercePricingClassId, long userId, long groupId,
String title, String description, ServiceContext serviceContext)
throws PortalException {
PortalPermissionUtil.check(
getPermissionChecker(),
CommercePricingClassActionKeys.MANAGE_COMMERCE_PRICING_CLASSES);
return commercePricingClassLocalService.updateCommercePricingClass(
commercePricingClassId, userId, groupId, title, description,
serviceContext);
}
@Override
public CommercePricingClass upsertCommercePricingClass(
long commercePricingClassId, long userId, long groupId,
String title, String description, String externalReferenceCode,
ServiceContext serviceContext)
throws PortalException {
PortalPermissionUtil.check(
getPermissionChecker(),
CommercePricingClassActionKeys.MANAGE_COMMERCE_PRICING_CLASSES);
return commercePricingClassLocalService.upsertCommercePricingClass(
commercePricingClassId, userId, groupId, title, description,
externalReferenceCode, serviceContext);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy