Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* 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.service;
import com.liferay.commerce.model.CommerceAddress;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.search.BaseModelSearchResult;
import com.liferay.portal.kernel.search.Indexable;
import com.liferay.portal.kernel.search.IndexableType;
import com.liferay.portal.kernel.search.Sort;
import com.liferay.portal.kernel.service.BaseLocalService;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.transaction.Isolation;
import com.liferay.portal.kernel.transaction.Propagation;
import com.liferay.portal.kernel.transaction.Transactional;
import com.liferay.portal.kernel.util.OrderByComparator;
import java.util.List;
import org.osgi.annotation.versioning.ProviderType;
/**
* Provides the local service interface for CommerceAddress. Methods of this
* service will not have security checks based on the propagated JAAS
* credentials because this service can only be accessed from within the same
* VM.
*
* @author Alessio Antonio Rendina
* @see CommerceAddressLocalServiceUtil
* @generated
*/
@ProviderType
@Transactional(
isolation = Isolation.PORTAL,
rollbackFor = {PortalException.class, SystemException.class}
)
public interface CommerceAddressLocalService extends BaseLocalService {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify this interface directly. Add custom service methods to com.liferay.commerce.service.impl.CommerceAddressLocalServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface. Consume the commerce address local service via injection or a org.osgi.util.tracker.ServiceTracker. Use {@link CommerceAddressLocalServiceUtil} if injection and service tracking are not available.
*/
/**
* @deprecated As of Mueller (7.2.x), defaultBilling/Shipping exist on Account Entity. Pass type.
*/
@Deprecated
public CommerceAddress addCommerceAddress(
String className, long classPK, String name, String description,
String street1, String street2, String street3, String city,
String zip, long regionId, long countryId, String phoneNumber,
boolean defaultBilling, boolean defaultShipping,
ServiceContext serviceContext)
throws PortalException;
@Indexable(type = IndexableType.REINDEX)
public CommerceAddress addCommerceAddress(
String className, long classPK, String name, String description,
String street1, String street2, String street3, String city,
String zip, long regionId, long countryId, String phoneNumber,
int type, ServiceContext serviceContext)
throws PortalException;
@Indexable(type = IndexableType.REINDEX)
public CommerceAddress addCommerceAddress(
String externalReferenceCode, String className, long classPK,
String name, String description, String street1, String street2,
String street3, String city, String zip, long regionId,
long countryId, String phoneNumber, int type,
ServiceContext serviceContext)
throws PortalException;
public CommerceAddress copyCommerceAddress(
long sourceCommerceAddressId, String className, long classPK,
ServiceContext serviceContext)
throws PortalException;
public CommerceAddress createCommerceAddress(long commerceAddressId);
@Indexable(type = IndexableType.DELETE)
public CommerceAddress deleteCommerceAddress(
CommerceAddress commerceAddress)
throws PortalException;
public void deleteCommerceAddresses(String className, long classPK)
throws PortalException;
public void deleteCountryCommerceAddresses(long countryId)
throws PortalException;
public void deleteRegionCommerceAddresses(long regionId)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public CommerceAddress fetchCommerceAddress(long commerceAddressId);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public CommerceAddress fetchCommerceAddressByExternalReferenceCode(
String externalReferenceCode, long companyId);
@Indexable(type = IndexableType.REINDEX)
public CommerceAddress geolocateCommerceAddress(long commerceAddressId)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getBillingAndShippingCommerceAddresses(
long companyId, String className, long classPK);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getBillingCommerceAddresses(
long companyId, String className, long classPK)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getBillingCommerceAddresses(
long channelId, String className, long classPK, int start, int end);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getBillingCommerceAddresses(
long companyId, String className, long classPK,
long commerceChannelId, String keywords, int start, int end,
Sort sort)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public int getBillingCommerceAddressesCount(
long channelId, String className, long classPK, int start, int end);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public int getBillingCommerceAddressesCount(
long companyId, String className, long classPK,
long commerceChannelId, String keywords)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public CommerceAddress getCommerceAddress(long commerceAddressId)
throws PortalException;
/**
* @deprecated As of Mueller (7.2.x), commerceAddress is scoped to Company use *ByCompanyId
*/
@Deprecated
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getCommerceAddresses(
long groupId, String className, long classPK);
/**
* @deprecated As of Mueller (7.2.x), commerceAddress is scoped to Company use *ByCompanyId
*/
@Deprecated
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getCommerceAddresses(
long groupId, String className, long classPK, int start, int end,
OrderByComparator orderByComparator);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getCommerceAddresses(
String className, long classPK, int start, int end,
OrderByComparator orderByComparator);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getCommerceAddressesByCompanyId(
long companyId, String className, long classPK);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getCommerceAddressesByCompanyId(
long companyId, String className, long classPK, int start, int end,
OrderByComparator orderByComparator);
/**
* @deprecated As of Mueller (7.2.x), commerceAddress is scoped to Company use *ByCompanyId
*/
@Deprecated
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public int getCommerceAddressesCount(
long groupId, String className, long classPK);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public int getCommerceAddressesCount(String className, long classPK);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public int getCommerceAddressesCountByCompanyId(
long companyId, String className, long classPK);
/**
* Returns the OSGi service identifier.
*
* @return the OSGi service identifier
*/
public String getOSGiServiceIdentifier();
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getShippingCommerceAddresses(
long companyId, String className, long classPK)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getShippingCommerceAddresses(
long channelId, String className, long classPK, int start, int end);
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getShippingCommerceAddresses(
long companyId, String className, long classPK,
long commerceChannelId, String keywords, int start, int end,
Sort sort)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public int getShippingCommerceAddressesCount(
long companyId, String className, long classPK,
long commerceChannelId, String keywords)
throws PortalException;
/**
* @deprecated As of Mueller (7.2.x), commerceAddress is scoped to Company. Don't need to pass groupId
*/
@Deprecated
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public BaseModelSearchResult searchCommerceAddresses(
long companyId, long groupId, String className, long classPK,
String keywords, int start, int end, Sort sort)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public BaseModelSearchResult searchCommerceAddresses(
long companyId, String className, long classPK, String keywords,
int start, int end, Sort sort)
throws PortalException;
/**
* @deprecated As of Mueller (7.2.x), defaultBilling/Shipping exist on Account Entity. Pass type.
*/
@Deprecated
public CommerceAddress updateCommerceAddress(
long commerceAddressId, String name, String description,
String street1, String street2, String street3, String city,
String zip, long regionId, long countryId, String phoneNumber,
boolean defaultBilling, boolean defaultShipping,
ServiceContext serviceContext)
throws PortalException;
@Indexable(type = IndexableType.REINDEX)
public CommerceAddress updateCommerceAddress(
long commerceAddressId, String name, String description,
String street1, String street2, String street3, String city,
String zip, long regionId, long countryId, String phoneNumber,
int type, ServiceContext serviceContext)
throws PortalException;
}