
com.liferay.commerce.product.service.http.CPDefinitionServiceSoap 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.http;
import aQute.bnd.annotation.ProviderType;
import com.liferay.commerce.product.service.CPDefinitionServiceUtil;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.util.LocalizationUtil;
import java.rmi.RemoteException;
import java.util.Locale;
import java.util.Map;
/**
* Provides the SOAP utility for the
* {@link CPDefinitionServiceUtil} service utility. The
* static methods of this class calls the same methods of the service utility.
* However, the signatures are different because it is difficult for SOAP to
* support certain types.
*
*
* ServiceBuilder follows certain rules in translating the methods. For example,
* if the method in the service utility returns a {@link java.util.List}, that
* is translated to an array of {@link com.liferay.commerce.product.model.CPDefinitionSoap}.
* If the method in the service utility returns a
* {@link com.liferay.commerce.product.model.CPDefinition}, that is translated to a
* {@link com.liferay.commerce.product.model.CPDefinitionSoap}. Methods that SOAP cannot
* safely wire are skipped.
*
*
*
* The benefits of using the SOAP utility is that it is cross platform
* compatible. SOAP allows different languages like Java, .NET, C++, PHP, and
* even Perl, to call the generated services. One drawback of SOAP is that it is
* slow because it needs to serialize all calls into a text format (XML).
*
*
*
* You can see a list of services at http://localhost:8080/api/axis. Set the
* property axis.servlet.hosts.allowed in portal.properties to configure
* security.
*
*
*
* The SOAP utility is only generated for remote services.
*
*
* @author Marco Leo
* @see CPDefinitionServiceHttp
* @see com.liferay.commerce.product.model.CPDefinitionSoap
* @see CPDefinitionServiceUtil
* @generated
*/
@ProviderType
public class CPDefinitionServiceSoap {
public static com.liferay.commerce.product.model.CPDefinitionSoap addCPDefinition(
String[] nameMapLanguageIds, String[] nameMapValues,
String[] shortDescriptionMapLanguageIds,
String[] shortDescriptionMapValues, String[] descriptionMapLanguageIds,
String[] descriptionMapValues, String[] urlTitleMapLanguageIds,
String[] urlTitleMapValues, String[] metaTitleMapLanguageIds,
String[] metaTitleMapValues, String[] metaDescriptionMapLanguageIds,
String[] metaDescriptionMapValues, String[] metaKeywordsMapLanguageIds,
String[] metaKeywordsMapValues, String productTypeName,
boolean ignoreSKUCombinations, boolean shippable, boolean freeShipping,
boolean shipSeparately, double shippingExtraPrice, double width,
double height, double depth, double weight, long cpTaxCategoryId,
boolean taxExempt, boolean telcoOrElectronics, String ddmStructureKey,
boolean published, int displayDateMonth, int displayDateDay,
int displayDateYear, int displayDateHour, int displayDateMinute,
int expirationDateMonth, int expirationDateDay, int expirationDateYear,
int expirationDateHour, int expirationDateMinute, boolean neverExpire,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws RemoteException {
try {
Map nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
nameMapValues);
Map shortDescriptionMap = LocalizationUtil.getLocalizationMap(shortDescriptionMapLanguageIds,
shortDescriptionMapValues);
Map descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
descriptionMapValues);
Map urlTitleMap = LocalizationUtil.getLocalizationMap(urlTitleMapLanguageIds,
urlTitleMapValues);
Map metaTitleMap = LocalizationUtil.getLocalizationMap(metaTitleMapLanguageIds,
metaTitleMapValues);
Map metaDescriptionMap = LocalizationUtil.getLocalizationMap(metaDescriptionMapLanguageIds,
metaDescriptionMapValues);
Map metaKeywordsMap = LocalizationUtil.getLocalizationMap(metaKeywordsMapLanguageIds,
metaKeywordsMapValues);
com.liferay.commerce.product.model.CPDefinition returnValue = CPDefinitionServiceUtil.addCPDefinition(nameMap,
shortDescriptionMap, descriptionMap, urlTitleMap,
metaTitleMap, metaDescriptionMap, metaKeywordsMap,
productTypeName, ignoreSKUCombinations, shippable,
freeShipping, shipSeparately, shippingExtraPrice, width,
height, depth, weight, cpTaxCategoryId, taxExempt,
telcoOrElectronics, ddmStructureKey, published,
displayDateMonth, displayDateDay, displayDateYear,
displayDateHour, displayDateMinute, expirationDateMonth,
expirationDateDay, expirationDateYear, expirationDateHour,
expirationDateMinute, neverExpire, serviceContext);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModel(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static com.liferay.commerce.product.model.CPDefinitionSoap addCPDefinition(
String[] nameMapLanguageIds, String[] nameMapValues,
String[] shortDescriptionMapLanguageIds,
String[] shortDescriptionMapValues, String[] descriptionMapLanguageIds,
String[] descriptionMapValues, String[] urlTitleMapLanguageIds,
String[] urlTitleMapValues, String[] metaTitleMapLanguageIds,
String[] metaTitleMapValues, String[] metaDescriptionMapLanguageIds,
String[] metaDescriptionMapValues, String[] metaKeywordsMapLanguageIds,
String[] metaKeywordsMapValues, String productTypeName,
boolean ignoreSKUCombinations, String ddmStructureKey,
boolean published, int displayDateMonth, int displayDateDay,
int displayDateYear, int displayDateHour, int displayDateMinute,
int expirationDateMonth, int expirationDateDay, int expirationDateYear,
int expirationDateHour, int expirationDateMinute, boolean neverExpire,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws RemoteException {
try {
Map nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
nameMapValues);
Map shortDescriptionMap = LocalizationUtil.getLocalizationMap(shortDescriptionMapLanguageIds,
shortDescriptionMapValues);
Map descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
descriptionMapValues);
Map urlTitleMap = LocalizationUtil.getLocalizationMap(urlTitleMapLanguageIds,
urlTitleMapValues);
Map metaTitleMap = LocalizationUtil.getLocalizationMap(metaTitleMapLanguageIds,
metaTitleMapValues);
Map metaDescriptionMap = LocalizationUtil.getLocalizationMap(metaDescriptionMapLanguageIds,
metaDescriptionMapValues);
Map metaKeywordsMap = LocalizationUtil.getLocalizationMap(metaKeywordsMapLanguageIds,
metaKeywordsMapValues);
com.liferay.commerce.product.model.CPDefinition returnValue = CPDefinitionServiceUtil.addCPDefinition(nameMap,
shortDescriptionMap, descriptionMap, urlTitleMap,
metaTitleMap, metaDescriptionMap, metaKeywordsMap,
productTypeName, ignoreSKUCombinations, ddmStructureKey,
published, displayDateMonth, displayDateDay,
displayDateYear, displayDateHour, displayDateMinute,
expirationDateMonth, expirationDateDay, expirationDateYear,
expirationDateHour, expirationDateMinute, neverExpire,
serviceContext);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModel(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static void deleteAssetCategoryCPDefinition(long cpDefinitionId,
long categoryId) throws RemoteException {
try {
CPDefinitionServiceUtil.deleteAssetCategoryCPDefinition(cpDefinitionId,
categoryId);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static void deleteCPDefinition(long cpDefinitionId)
throws RemoteException {
try {
CPDefinitionServiceUtil.deleteCPDefinition(cpDefinitionId);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static com.liferay.commerce.product.model.CPDefinitionSoap fetchCPDefinition(
long cpDefinitionId) throws RemoteException {
try {
com.liferay.commerce.product.model.CPDefinition returnValue = CPDefinitionServiceUtil.fetchCPDefinition(cpDefinitionId);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModel(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static com.liferay.commerce.product.model.CPDefinitionSoap getCPDefinition(
long cpDefinitionId) throws RemoteException {
try {
com.liferay.commerce.product.model.CPDefinition returnValue = CPDefinitionServiceUtil.getCPDefinition(cpDefinitionId);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModel(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static com.liferay.commerce.product.model.CPDefinitionSoap[] getCPDefinitions(
long groupId, String productTypeName, String languageId, int status,
int start, int end,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
throws RemoteException {
try {
java.util.List returnValue =
CPDefinitionServiceUtil.getCPDefinitions(groupId,
productTypeName, languageId, status, start, end,
orderByComparator);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModels(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static com.liferay.commerce.product.model.CPDefinitionSoap[] getCPDefinitionsByCategoryId(
long categoryId, int start, int end) throws RemoteException {
try {
java.util.List returnValue =
CPDefinitionServiceUtil.getCPDefinitionsByCategoryId(categoryId,
start, end);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModels(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static int getCPDefinitionsCount(long groupId,
String productTypeName, String languageId, int status)
throws RemoteException {
try {
int returnValue = CPDefinitionServiceUtil.getCPDefinitionsCount(groupId,
productTypeName, languageId, status);
return returnValue;
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static int getCPDefinitionsCountByCategoryId(long categoryId)
throws RemoteException {
try {
int returnValue = CPDefinitionServiceUtil.getCPDefinitionsCountByCategoryId(categoryId);
return returnValue;
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static String getLayoutUuid(long cpDefinitionId)
throws RemoteException {
try {
String returnValue = CPDefinitionServiceUtil.getLayoutUuid(cpDefinitionId);
return returnValue;
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static String getUrlTitleMapAsXML(long cpDefinitionId)
throws RemoteException {
try {
String returnValue = CPDefinitionServiceUtil.getUrlTitleMapAsXML(cpDefinitionId);
return returnValue;
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static com.liferay.commerce.product.model.CPDefinitionSoap moveCPDefinitionToTrash(
long cpDefinitionId) throws RemoteException {
try {
com.liferay.commerce.product.model.CPDefinition returnValue = CPDefinitionServiceUtil.moveCPDefinitionToTrash(cpDefinitionId);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModel(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static void restoreCPDefinitionFromTrash(long cpDefinitionId)
throws RemoteException {
try {
CPDefinitionServiceUtil.restoreCPDefinitionFromTrash(cpDefinitionId);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static com.liferay.commerce.product.model.CPDefinitionSoap updateCPDefinition(
long cpDefinitionId, String[] nameMapLanguageIds,
String[] nameMapValues, String[] shortDescriptionMapLanguageIds,
String[] shortDescriptionMapValues, String[] descriptionMapLanguageIds,
String[] descriptionMapValues, String[] urlTitleMapLanguageIds,
String[] urlTitleMapValues, String[] metaTitleMapLanguageIds,
String[] metaTitleMapValues, String[] metaDescriptionMapLanguageIds,
String[] metaDescriptionMapValues, String[] metaKeywordsMapLanguageIds,
String[] metaKeywordsMapValues, boolean ignoreSKUCombinations,
String ddmStructureKey, boolean published, int displayDateMonth,
int displayDateDay, int displayDateYear, int displayDateHour,
int displayDateMinute, int expirationDateMonth, int expirationDateDay,
int expirationDateYear, int expirationDateHour,
int expirationDateMinute, boolean neverExpire,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws RemoteException {
try {
Map nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
nameMapValues);
Map shortDescriptionMap = LocalizationUtil.getLocalizationMap(shortDescriptionMapLanguageIds,
shortDescriptionMapValues);
Map descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
descriptionMapValues);
Map urlTitleMap = LocalizationUtil.getLocalizationMap(urlTitleMapLanguageIds,
urlTitleMapValues);
Map metaTitleMap = LocalizationUtil.getLocalizationMap(metaTitleMapLanguageIds,
metaTitleMapValues);
Map metaDescriptionMap = LocalizationUtil.getLocalizationMap(metaDescriptionMapLanguageIds,
metaDescriptionMapValues);
Map metaKeywordsMap = LocalizationUtil.getLocalizationMap(metaKeywordsMapLanguageIds,
metaKeywordsMapValues);
com.liferay.commerce.product.model.CPDefinition returnValue = CPDefinitionServiceUtil.updateCPDefinition(cpDefinitionId,
nameMap, shortDescriptionMap, descriptionMap, urlTitleMap,
metaTitleMap, metaDescriptionMap, metaKeywordsMap,
ignoreSKUCombinations, ddmStructureKey, published,
displayDateMonth, displayDateDay, displayDateYear,
displayDateHour, displayDateMinute, expirationDateMonth,
expirationDateDay, expirationDateYear, expirationDateHour,
expirationDateMinute, neverExpire, serviceContext);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModel(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static com.liferay.commerce.product.model.CPDefinitionSoap updateCPDefinitionCategorization(
long cpDefinitionId,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws RemoteException {
try {
com.liferay.commerce.product.model.CPDefinition returnValue = CPDefinitionServiceUtil.updateCPDefinitionCategorization(cpDefinitionId,
serviceContext);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModel(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static void updateCPDisplayLayout(long cpDefinitionId,
String layoutUuid,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws RemoteException {
try {
CPDefinitionServiceUtil.updateCPDisplayLayout(cpDefinitionId,
layoutUuid, serviceContext);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static com.liferay.commerce.product.model.CPDefinitionSoap updateShippingInfo(
long cpDefinitionId, boolean shippable, boolean freeShipping,
boolean shipSeparately, double shippingExtraPrice, double width,
double height, double depth, double weight,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws RemoteException {
try {
com.liferay.commerce.product.model.CPDefinition returnValue = CPDefinitionServiceUtil.updateShippingInfo(cpDefinitionId,
shippable, freeShipping, shipSeparately,
shippingExtraPrice, width, height, depth, weight,
serviceContext);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModel(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static com.liferay.commerce.product.model.CPDefinitionSoap updateTaxCategoryInfo(
long cpDefinitionId, long cpTaxCategoryId, boolean taxExempt,
boolean telcoOrElectronics) throws RemoteException {
try {
com.liferay.commerce.product.model.CPDefinition returnValue = CPDefinitionServiceUtil.updateTaxCategoryInfo(cpDefinitionId,
cpTaxCategoryId, taxExempt, telcoOrElectronics);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModel(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
public static com.liferay.commerce.product.model.CPDefinitionSoap upsertCPDefinition(
String[] nameMapLanguageIds, String[] nameMapValues,
String[] shortDescriptionMapLanguageIds,
String[] shortDescriptionMapValues, String[] descriptionMapLanguageIds,
String[] descriptionMapValues, String[] urlTitleMapLanguageIds,
String[] urlTitleMapValues, String[] metaTitleMapLanguageIds,
String[] metaTitleMapValues, String[] metaDescriptionMapLanguageIds,
String[] metaDescriptionMapValues, String[] metaKeywordsMapLanguageIds,
String[] metaKeywordsMapValues, String productTypeName,
boolean ignoreSKUCombinations, boolean shippable, boolean freeShipping,
boolean shipSeparately, double shippingExtraPrice, double width,
double height, double depth, double weight, long cpTaxCategoryId,
boolean taxExempt, boolean telcoOrElectronics, String ddmStructureKey,
boolean published, int displayDateMonth, int displayDateDay,
int displayDateYear, int displayDateHour, int displayDateMinute,
int expirationDateMonth, int expirationDateDay, int expirationDateYear,
int expirationDateHour, int expirationDateMinute, boolean neverExpire,
String defaultSKU, String externalReferenceCode,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws RemoteException {
try {
Map nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
nameMapValues);
Map shortDescriptionMap = LocalizationUtil.getLocalizationMap(shortDescriptionMapLanguageIds,
shortDescriptionMapValues);
Map descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
descriptionMapValues);
Map urlTitleMap = LocalizationUtil.getLocalizationMap(urlTitleMapLanguageIds,
urlTitleMapValues);
Map metaTitleMap = LocalizationUtil.getLocalizationMap(metaTitleMapLanguageIds,
metaTitleMapValues);
Map metaDescriptionMap = LocalizationUtil.getLocalizationMap(metaDescriptionMapLanguageIds,
metaDescriptionMapValues);
Map metaKeywordsMap = LocalizationUtil.getLocalizationMap(metaKeywordsMapLanguageIds,
metaKeywordsMapValues);
com.liferay.commerce.product.model.CPDefinition returnValue = CPDefinitionServiceUtil.upsertCPDefinition(nameMap,
shortDescriptionMap, descriptionMap, urlTitleMap,
metaTitleMap, metaDescriptionMap, metaKeywordsMap,
productTypeName, ignoreSKUCombinations, shippable,
freeShipping, shipSeparately, shippingExtraPrice, width,
height, depth, weight, cpTaxCategoryId, taxExempt,
telcoOrElectronics, ddmStructureKey, published,
displayDateMonth, displayDateDay, displayDateYear,
displayDateHour, displayDateMinute, expirationDateMonth,
expirationDateDay, expirationDateYear, expirationDateHour,
expirationDateMinute, neverExpire, defaultSKU,
externalReferenceCode, serviceContext);
return com.liferay.commerce.product.model.CPDefinitionSoap.toSoapModel(returnValue);
}
catch (Exception e) {
_log.error(e, e);
throw new RemoteException(e.getMessage());
}
}
private static Log _log = LogFactoryUtil.getLog(CPDefinitionServiceSoap.class);
}