|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
@Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface ShoppingItemLocalService
The interface for the shopping item local service.
This is a local service. 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.
ShoppingItemLocalServiceUtil
,
ShoppingItemLocalServiceBaseImpl
,
ShoppingItemLocalServiceImpl
Method Summary | |
---|---|
void |
addBookItems(long userId,
long groupId,
long categoryId,
String[] isbns)
|
ShoppingItem |
addItem(long userId,
long groupId,
long categoryId,
String sku,
String name,
String description,
String properties,
String fieldsQuantities,
boolean requiresShipping,
int stockQuantity,
boolean featured,
Boolean sale,
boolean smallImage,
String smallImageURL,
File smallImageFile,
boolean mediumImage,
String mediumImageURL,
File mediumImageFile,
boolean largeImage,
String largeImageURL,
File largeImageFile,
List<ShoppingItemField> itemFields,
List<ShoppingItemPrice> itemPrices,
ServiceContext serviceContext)
|
void |
addItemResources(long itemId,
boolean addGroupPermissions,
boolean addGuestPermissions)
|
void |
addItemResources(long itemId,
String[] groupPermissions,
String[] guestPermissions)
|
void |
addItemResources(ShoppingItem item,
boolean addGroupPermissions,
boolean addGuestPermissions)
|
void |
addItemResources(ShoppingItem item,
String[] groupPermissions,
String[] guestPermissions)
|
ShoppingItem |
addShoppingItem(ShoppingItem shoppingItem)
Adds the shopping item to the database. |
ShoppingItem |
createShoppingItem(long itemId)
Creates a new shopping item with the primary key. |
void |
deleteItem(long itemId)
|
void |
deleteItem(ShoppingItem item)
|
void |
deleteItems(long groupId,
long categoryId)
|
ShoppingItem |
deleteShoppingItem(long itemId)
Deletes the shopping item with the primary key from the database. |
ShoppingItem |
deleteShoppingItem(ShoppingItem shoppingItem)
Deletes the shopping item from the database. |
DynamicQuery |
dynamicQuery()
|
List |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows. |
List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows. |
List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows. |
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows that match the dynamic query. |
ShoppingItem |
fetchShoppingItem(long itemId)
|
String |
getBeanIdentifier()
Returns the Spring bean ID for this bean. |
int |
getCategoriesItemsCount(long groupId,
List<Long> categoryIds)
|
List<ShoppingItem> |
getFeaturedItems(long groupId,
long categoryId,
int numOfItems)
|
ShoppingItem |
getItem(long itemId)
|
ShoppingItem |
getItem(long companyId,
String sku)
|
ShoppingItem |
getItemByLargeImageId(long largeImageId)
|
ShoppingItem |
getItemByMediumImageId(long mediumImageId)
|
ShoppingItem |
getItemBySmallImageId(long smallImageId)
|
List<ShoppingItem> |
getItems(long groupId,
long categoryId)
|
List<ShoppingItem> |
getItems(long groupId,
long categoryId,
int start,
int end,
OrderByComparator obc)
|
int |
getItemsCount(long groupId,
long categoryId)
|
ShoppingItem[] |
getItemsPrevAndNext(long itemId,
OrderByComparator obc)
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj)
|
List<ShoppingItem> |
getSaleItems(long groupId,
long categoryId,
int numOfItems)
|
ShoppingItem |
getShoppingItem(long itemId)
Returns the shopping item with the primary key. |
List<ShoppingItem> |
getShoppingItems(int start,
int end)
Returns a range of all the shopping items. |
int |
getShoppingItemsCount()
Returns the number of shopping items. |
List<ShoppingItem> |
search(long groupId,
long[] categoryIds,
String keywords,
int start,
int end)
|
int |
searchCount(long groupId,
long[] categoryIds,
String keywords)
|
void |
setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean. |
ShoppingItem |
updateItem(long userId,
long itemId,
long groupId,
long categoryId,
String sku,
String name,
String description,
String properties,
String fieldsQuantities,
boolean requiresShipping,
int stockQuantity,
boolean featured,
Boolean sale,
boolean smallImage,
String smallImageURL,
File smallImageFile,
boolean mediumImage,
String mediumImageURL,
File mediumImageFile,
boolean largeImage,
String largeImageURL,
File largeImageFile,
List<ShoppingItemField> itemFields,
List<ShoppingItemPrice> itemPrices,
ServiceContext serviceContext)
|
ShoppingItem |
updateShoppingItem(ShoppingItem shoppingItem)
Updates the shopping item in the database or adds it if it does not yet exist. |
ShoppingItem |
updateShoppingItem(ShoppingItem shoppingItem,
boolean merge)
Updates the shopping item in the database or adds it if it does not yet exist. |
Method Detail |
---|
ShoppingItem addShoppingItem(ShoppingItem shoppingItem) throws SystemException
shoppingItem
- the shopping item
SystemException
- if a system exception occurredShoppingItem createShoppingItem(long itemId)
itemId
- the primary key for the new shopping item
ShoppingItem deleteShoppingItem(long itemId) throws PortalException, SystemException
itemId
- the primary key of the shopping item
PortalException
- if a shopping item with the primary key could not be found
SystemException
- if a system exception occurredShoppingItem deleteShoppingItem(ShoppingItem shoppingItem) throws SystemException
shoppingItem
- the shopping item
SystemException
- if a system exception occurredDynamicQuery dynamicQuery()
List dynamicQuery(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
- the dynamic query
SystemException
- if a system exception occurredList dynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set.
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)
SystemException
- if a system exception occurredList dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set.
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredlong dynamicQueryCount(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
- the dynamic query
SystemException
- if a system exception occurred@Transactional(propagation=SUPPORTS, readOnly=true) ShoppingItem fetchShoppingItem(long itemId) throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) ShoppingItem getShoppingItem(long itemId) throws PortalException, SystemException
itemId
- the primary key of the shopping item
PortalException
- if a shopping item with the primary key could not be found
SystemException
- if a system exception occurred@Transactional(propagation=SUPPORTS, readOnly=true) PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException, SystemException
getPersistedModel
in interface PersistedModelLocalService
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) List<ShoppingItem> getShoppingItems(int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set.
start
- the lower bound of the range of shopping itemsend
- the upper bound of the range of shopping items (not inclusive)
SystemException
- if a system exception occurred@Transactional(propagation=SUPPORTS, readOnly=true) int getShoppingItemsCount() throws SystemException
SystemException
- if a system exception occurredShoppingItem updateShoppingItem(ShoppingItem shoppingItem) throws SystemException
shoppingItem
- the shopping item
SystemException
- if a system exception occurredShoppingItem updateShoppingItem(ShoppingItem shoppingItem, boolean merge) throws SystemException
shoppingItem
- the shopping itemmerge
- whether to merge the shopping item with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)
for an explanation.
SystemException
- if a system exception occurredString getBeanIdentifier()
void setBeanIdentifier(String beanIdentifier)
beanIdentifier
- the Spring bean ID for this beanvoid addBookItems(long userId, long groupId, long categoryId, String[] isbns) throws PortalException, SystemException
PortalException
SystemException
ShoppingItem addItem(long userId, long groupId, long categoryId, String sku, String name, String description, String properties, String fieldsQuantities, boolean requiresShipping, int stockQuantity, boolean featured, Boolean sale, boolean smallImage, String smallImageURL, File smallImageFile, boolean mediumImage, String mediumImageURL, File mediumImageFile, boolean largeImage, String largeImageURL, File largeImageFile, List<ShoppingItemField> itemFields, List<ShoppingItemPrice> itemPrices, ServiceContext serviceContext) throws PortalException, SystemException
PortalException
SystemException
void addItemResources(long itemId, boolean addGroupPermissions, boolean addGuestPermissions) throws PortalException, SystemException
PortalException
SystemException
void addItemResources(long itemId, String[] groupPermissions, String[] guestPermissions) throws PortalException, SystemException
PortalException
SystemException
void addItemResources(ShoppingItem item, boolean addGroupPermissions, boolean addGuestPermissions) throws PortalException, SystemException
PortalException
SystemException
void addItemResources(ShoppingItem item, String[] groupPermissions, String[] guestPermissions) throws PortalException, SystemException
PortalException
SystemException
void deleteItem(long itemId) throws PortalException, SystemException
PortalException
SystemException
void deleteItem(ShoppingItem item) throws PortalException, SystemException
PortalException
SystemException
void deleteItems(long groupId, long categoryId) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) int getCategoriesItemsCount(long groupId, List<Long> categoryIds) throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) List<ShoppingItem> getFeaturedItems(long groupId, long categoryId, int numOfItems) throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) ShoppingItem getItem(long itemId) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) ShoppingItem getItem(long companyId, String sku) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) ShoppingItem getItemByLargeImageId(long largeImageId) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) ShoppingItem getItemByMediumImageId(long mediumImageId) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) ShoppingItem getItemBySmallImageId(long smallImageId) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) List<ShoppingItem> getItems(long groupId, long categoryId) throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) List<ShoppingItem> getItems(long groupId, long categoryId, int start, int end, OrderByComparator obc) throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) int getItemsCount(long groupId, long categoryId) throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) ShoppingItem[] getItemsPrevAndNext(long itemId, OrderByComparator obc) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) List<ShoppingItem> getSaleItems(long groupId, long categoryId, int numOfItems) throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) List<ShoppingItem> search(long groupId, long[] categoryIds, String keywords, int start, int end) throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) int searchCount(long groupId, long[] categoryIds, String keywords) throws SystemException
SystemException
ShoppingItem updateItem(long userId, long itemId, long groupId, long categoryId, String sku, String name, String description, String properties, String fieldsQuantities, boolean requiresShipping, int stockQuantity, boolean featured, Boolean sale, boolean smallImage, String smallImageURL, File smallImageFile, boolean mediumImage, String mediumImageURL, File mediumImageFile, boolean largeImage, String largeImageURL, File largeImageFile, List<ShoppingItemField> itemFields, List<ShoppingItemPrice> itemPrices, ServiceContext serviceContext) throws PortalException, SystemException
PortalException
SystemException
|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |