Uses of Interface
com.elasticpath.domain.catalog.Brand

Packages that use Brand
com.elasticpath.domain.catalog   
com.elasticpath.domain.catalog.impl   
com.elasticpath.domain.shoppingcart   
com.elasticpath.domain.shoppingcart.impl   
com.elasticpath.service.catalog   
com.elasticpath.service.catalog.impl   
com.elasticpath.service.dataimport   
com.elasticpath.service.dataimport.impl   
 

Uses of Brand in com.elasticpath.domain.catalog
 

Methods in com.elasticpath.domain.catalog that return Brand
 Brand Product.getBrand()
          Returns the brand/manufacturer of the product.
 

Methods in com.elasticpath.domain.catalog with parameters of type Brand
 void Product.setBrand(Brand brand)
          Sets the brand/manufacturer of the product.
 

Uses of Brand in com.elasticpath.domain.catalog.impl
 

Classes in com.elasticpath.domain.catalog.impl that implement Brand
 class BrandImpl
          The default implementation of Product.
 

Methods in com.elasticpath.domain.catalog.impl that return Brand
 Brand ProductImpl.getBrand()
          Returns the brand/manufacturer of the product.
 

Methods in com.elasticpath.domain.catalog.impl with parameters of type Brand
 void ProductImpl.setBrand(Brand brand)
          Sets the brand/manufacturer of the product.
 

Uses of Brand in com.elasticpath.domain.shoppingcart
 

Methods in com.elasticpath.domain.shoppingcart that return Brand
 Brand ViewHistoryProduct.getBrand()
          Gets the brand for the viewed product.
 

Uses of Brand in com.elasticpath.domain.shoppingcart.impl
 

Methods in com.elasticpath.domain.shoppingcart.impl that return Brand
 Brand ViewHistoryProductImpl.getBrand()
          Gets the brand for the viewed product.
 

Methods in com.elasticpath.domain.shoppingcart.impl with parameters of type Brand
 void ViewHistoryProductImpl.setBrand(Brand brand)
          Sets the brand for the viewed product.
 

Uses of Brand in com.elasticpath.service.catalog
 

Methods in com.elasticpath.service.catalog that return Brand
 Brand BrandService.add(Brand brand)
          Adds the given brand.
 Brand BrandService.findByCode(java.lang.String code)
          Find the brand with the given code.
 Brand BrandService.get(long brandUid)
          Get the brand with the given UID.
 

Methods in com.elasticpath.service.catalog with parameters of type Brand
 Brand BrandService.add(Brand brand)
          Adds the given brand.
 boolean BrandService.codeExists(Brand brand)
          Check whether the given brand's code exists or not.
 void BrandService.remove(Brand brand)
          Deletes the brand.
 void BrandService.saveOrUpdate(Brand brand)
          Save or update the given brand.
 void BrandService.update(Brand brand)
          Updates the given brand.
 

Uses of Brand in com.elasticpath.service.catalog.impl
 

Methods in com.elasticpath.service.catalog.impl that return Brand
 Brand BrandServiceImpl.add(Brand brand)
          Adds the given brand.
 Brand BrandServiceImpl.findByCode(java.lang.String code)
          Find the brand with the given code.
 Brand BrandServiceImpl.get(long brandUid)
          Get the brand with the given UID.
 Brand BrandServiceImpl.getDummyBrand()
          Retrieve the dummy brand.
 

Methods in com.elasticpath.service.catalog.impl with parameters of type Brand
 Brand BrandServiceImpl.add(Brand brand)
          Adds the given brand.
 boolean BrandServiceImpl.codeExists(Brand brand)
          Check whether the given brand's code exists or not.
 void BrandServiceImpl.remove(Brand brand)
          Deletes the brand.
 void BrandServiceImpl.saveOrUpdate(Brand brand)
          Save or update the given brand.
 void BrandServiceImpl.update(Brand brand)
          Updates the given brand.
 

Uses of Brand in com.elasticpath.service.dataimport
 

Methods in com.elasticpath.service.dataimport that return Brand
 Brand ImportGuidHelper.findBrandByGuid(java.lang.String guid)
          Retrieve the brand with the given guid.
 

Uses of Brand in com.elasticpath.service.dataimport.impl
 

Methods in com.elasticpath.service.dataimport.impl that return Brand
 Brand ImportGuidHelperImpl.findBrandByGuid(java.lang.String guid)
          Retrieve the brand with the given guid.