com.liferay.portlet.shopping.service.http
Class ShoppingItemServiceHttp
java.lang.Object
com.liferay.portlet.shopping.service.http.ShoppingItemServiceHttp
public class ShoppingItemServiceHttp
- extends java.lang.Object
This class provides a HTTP utility for the
ShoppingItemServiceUtil service utility. The
static methods of this class calls the same methods of the service utility.
However, the signatures are different because it requires an additional
HttpPrincipal parameter.
The benefits of using the HTTP utility is that it is fast and allows for
tunneling without the cost of serializing to text. The drawback is that it
only works with Java.
Set the property tunnel.servlet.hosts.allowed in portal.properties to
configure security.
The HTTP utility is only generated for remote services.
- Author:
- Brian Wing Shun Chan
- See Also:
ShoppingItemServiceSoap,
HttpPrincipal,
ShoppingItemServiceUtil- Generated:
|
Method Summary |
static void |
addBookItems(HttpPrincipal httpPrincipal,
long groupId,
long categoryId,
java.lang.String[] isbns)
|
static com.liferay.portlet.shopping.model.ShoppingItem |
addItem(HttpPrincipal httpPrincipal,
long groupId,
long categoryId,
java.lang.String sku,
java.lang.String name,
java.lang.String description,
java.lang.String properties,
java.lang.String fieldsQuantities,
boolean requiresShipping,
int stockQuantity,
boolean featured,
java.lang.Boolean sale,
boolean smallImage,
java.lang.String smallImageURL,
java.io.File smallFile,
boolean mediumImage,
java.lang.String mediumImageURL,
java.io.File mediumFile,
boolean largeImage,
java.lang.String largeImageURL,
java.io.File largeFile,
java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> itemFields,
java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> itemPrices,
com.liferay.portal.service.ServiceContext serviceContext)
|
static void |
deleteItem(HttpPrincipal httpPrincipal,
long itemId)
|
static int |
getCategoriesItemsCount(HttpPrincipal httpPrincipal,
long groupId,
java.util.List<java.lang.Long> categoryIds)
|
static com.liferay.portlet.shopping.model.ShoppingItem |
getItem(HttpPrincipal httpPrincipal,
long itemId)
|
static java.util.List<com.liferay.portlet.shopping.model.ShoppingItem> |
getItems(HttpPrincipal httpPrincipal,
long groupId,
long categoryId)
|
static java.util.List<com.liferay.portlet.shopping.model.ShoppingItem> |
getItems(HttpPrincipal httpPrincipal,
long groupId,
long categoryId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator obc)
|
static int |
getItemsCount(HttpPrincipal httpPrincipal,
long groupId,
long categoryId)
|
static com.liferay.portlet.shopping.model.ShoppingItem[] |
getItemsPrevAndNext(HttpPrincipal httpPrincipal,
long itemId,
com.liferay.portal.kernel.util.OrderByComparator obc)
|
static com.liferay.portlet.shopping.model.ShoppingItem |
updateItem(HttpPrincipal httpPrincipal,
long itemId,
long groupId,
long categoryId,
java.lang.String sku,
java.lang.String name,
java.lang.String description,
java.lang.String properties,
java.lang.String fieldsQuantities,
boolean requiresShipping,
int stockQuantity,
boolean featured,
java.lang.Boolean sale,
boolean smallImage,
java.lang.String smallImageURL,
java.io.File smallFile,
boolean mediumImage,
java.lang.String mediumImageURL,
java.io.File mediumFile,
boolean largeImage,
java.lang.String largeImageURL,
java.io.File largeFile,
java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> itemFields,
java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> itemPrices,
com.liferay.portal.service.ServiceContext serviceContext)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ShoppingItemServiceHttp
public ShoppingItemServiceHttp()
addBookItems
public static void addBookItems(HttpPrincipal httpPrincipal,
long groupId,
long categoryId,
java.lang.String[] isbns)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
addItem
public static com.liferay.portlet.shopping.model.ShoppingItem addItem(HttpPrincipal httpPrincipal,
long groupId,
long categoryId,
java.lang.String sku,
java.lang.String name,
java.lang.String description,
java.lang.String properties,
java.lang.String fieldsQuantities,
boolean requiresShipping,
int stockQuantity,
boolean featured,
java.lang.Boolean sale,
boolean smallImage,
java.lang.String smallImageURL,
java.io.File smallFile,
boolean mediumImage,
java.lang.String mediumImageURL,
java.io.File mediumFile,
boolean largeImage,
java.lang.String largeImageURL,
java.io.File largeFile,
java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> itemFields,
java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> itemPrices,
com.liferay.portal.service.ServiceContext serviceContext)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
deleteItem
public static void deleteItem(HttpPrincipal httpPrincipal,
long itemId)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
getCategoriesItemsCount
public static int getCategoriesItemsCount(HttpPrincipal httpPrincipal,
long groupId,
java.util.List<java.lang.Long> categoryIds)
throws com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.SystemException
getItem
public static com.liferay.portlet.shopping.model.ShoppingItem getItem(HttpPrincipal httpPrincipal,
long itemId)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
getItems
public static java.util.List<com.liferay.portlet.shopping.model.ShoppingItem> getItems(HttpPrincipal httpPrincipal,
long groupId,
long categoryId)
throws com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.SystemException
getItems
public static java.util.List<com.liferay.portlet.shopping.model.ShoppingItem> getItems(HttpPrincipal httpPrincipal,
long groupId,
long categoryId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator obc)
throws com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.SystemException
getItemsCount
public static int getItemsCount(HttpPrincipal httpPrincipal,
long groupId,
long categoryId)
throws com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.SystemException
getItemsPrevAndNext
public static com.liferay.portlet.shopping.model.ShoppingItem[] getItemsPrevAndNext(HttpPrincipal httpPrincipal,
long itemId,
com.liferay.portal.kernel.util.OrderByComparator obc)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException
updateItem
public static com.liferay.portlet.shopping.model.ShoppingItem updateItem(HttpPrincipal httpPrincipal,
long itemId,
long groupId,
long categoryId,
java.lang.String sku,
java.lang.String name,
java.lang.String description,
java.lang.String properties,
java.lang.String fieldsQuantities,
boolean requiresShipping,
int stockQuantity,
boolean featured,
java.lang.Boolean sale,
boolean smallImage,
java.lang.String smallImageURL,
java.io.File smallFile,
boolean mediumImage,
java.lang.String mediumImageURL,
java.io.File mediumFile,
boolean largeImage,
java.lang.String largeImageURL,
java.io.File largeFile,
java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> itemFields,
java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> itemPrices,
com.liferay.portal.service.ServiceContext serviceContext)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException
- Throws:
com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.SystemException