Uses of Class
com.shephertz.app42.paas.sdk.java.shopping.Catalogue

Packages that use Catalogue
com.shephertz.app42.paas.sdk.java.shopping   
 

Uses of Catalogue in com.shephertz.app42.paas.sdk.java.shopping
 

Methods in com.shephertz.app42.paas.sdk.java.shopping that return Catalogue
 Catalogue CatalogueService.addItem(java.lang.String catalogueName, java.lang.String categoryName, ItemData itemData)
          Creates a Item in a Category for a particular Catelogue
 Catalogue CatalogueResponseBuilder.buildResponse(java.lang.String response)
          Converts the response in JSON format to the value object i.e Catalogue
 Catalogue CatalogueService.createCatalogue(java.lang.String catalogueName, java.lang.String catalogueDescription)
          Creates a Catalogue for a particular App.
 Catalogue CatalogueService.createCategory(java.lang.String catalogueName, java.lang.String categoryName, java.lang.String categoryDescription)
          Creates a Category for a particular Catalogue e.g.
 Catalogue CatalogueService.getItemById(java.lang.String catalogueName, java.lang.String categoryName, java.lang.String itemId)
          Fetches Item by id for a Catalogue and Category
 Catalogue CatalogueService.getItems(java.lang.String catalogueName)
          Fetches all items for a Catalogue
 Catalogue CatalogueService.getItemsByCategory(java.lang.String catalogueName, java.lang.String categoryName)
          Fetches all items for a Catalogue and Category
 Catalogue CatalogueService.getItemsByCategory(java.lang.String catalogueName, java.lang.String categoryName, int max, int offset)
          Fetches all items for a Catalogue and Category by paging.
 

Methods in com.shephertz.app42.paas.sdk.java.shopping that return types with arguments of type Catalogue
 java.util.ArrayList<Catalogue> CatalogueResponseBuilder.buildArrayResponse(java.lang.String response)
          Converts the response in JSON format to the list of value objects i.e Catalogue