| Line 335... |
Line 335... |
| 335 |
Item getItem(1:i64 item_id) throws (1:CatalogServiceException cex),
|
335 |
Item getItem(1:i64 item_id) throws (1:CatalogServiceException cex),
|
| 336 |
list<Item> getItemsByCatalogId(1:i64 catalog_item_id) throws (1:CatalogServiceException cex),
|
336 |
list<Item> getItemsByCatalogId(1:i64 catalog_item_id) throws (1:CatalogServiceException cex),
|
| 337 |
list<Item> getValidItemsByCatalogId(1:i64 catalog_item_id) throws (1:CatalogServiceException cex),
|
337 |
list<Item> getValidItemsByCatalogId(1:i64 catalog_item_id) throws (1:CatalogServiceException cex),
|
| 338 |
list<Item> getAllItems(1:bool isActive) throws (1:CatalogServiceException cex),
|
338 |
list<Item> getAllItems(1:bool isActive) throws (1:CatalogServiceException cex),
|
| 339 |
list<Item> getAllItemsByStatus(1:status itemStatus) throws (1:CatalogServiceException cex),
|
339 |
list<Item> getAllItemsByStatus(1:status itemStatus) throws (1:CatalogServiceException cex),
|
| 340 |
bool markItemAsContentComplete(1:i64 entityId, 2:i64 category, 3:string brand, 4:string modelName, 5:string modelNumber) throws (1:CatalogServiceException cex),
|
340 |
bool markItemAsContentComplete(1:i64 entityId, 2:i64 category, 3:string brand, 4:string modelName, 5:string modelNumber, 6:bool isAndroid) throws (1:CatalogServiceException cex),
|
| 341 |
|
341 |
|
| 342 |
/**
|
342 |
/**
|
| 343 |
Gets at most 'limit' items starting at the given offset. Returns an empty list if there are no more items at the given offset.
|
343 |
Gets at most 'limit' items starting at the given offset. Returns an empty list if there are no more items at the given offset.
|
| 344 |
*/
|
344 |
*/
|
| 345 |
list<Item> getAllItemsInRange(1:i64 offset, 2:i64 limit) throws (1:CatalogServiceException cex),
|
345 |
list<Item> getAllItemsInRange(1:i64 offset, 2:i64 limit) throws (1:CatalogServiceException cex),
|