Package com.ateam.webstore.service.impl

Source Code of com.ateam.webstore.service.impl.ProductService

package com.ateam.webstore.service.impl;

import java.io.Serializable;
import java.util.Collection;

import com.ateam.webstore.dao.ProductDAO;
import com.ateam.webstore.model.Product;
import com.ateam.webstore.model.ProductListing;
import com.ateam.webstore.model.SubCategory;
import com.ateam.webstore.service.RepositoryService;

public class ProductService implements RepositoryService<Product> {
 
  /**
   * Initializes a <code>ProductService</code>
   */
  public ProductService(){
    super();
  }

  @Override
  public Product store(Product product) {
   
    ProductDAO repository = new ProductDAO();
    return repository.save(product);
   
  }

  @Override
  public void remove(Product product) {
   
    ProductDAO repository = new ProductDAO();
    repository.delete(product);
   
  }

  @Override
  public Collection<Product> getAll() {
   
    ProductDAO repository = new ProductDAO();
    return repository.getAll();
   
  }

  public Collection<Product> getProductByName(String name) {
   
    ProductDAO repository = new ProductDAO();
    return repository.getProductByName(name);
  }

  @Override
  public Product getById(Serializable id) {
    ProductDAO repository = new ProductDAO();
    return repository.get(id);
  }

  public Collection<Product> getFeaturedProducts() {
    ProductDAO repository = new ProductDAO();
   
    return repository.getFeaturedProducts();
  }
 
  public Collection<Product> getProductsBySubCategory(Serializable subCategoryId) {
    SubCategoryService subCategoryService = new SubCategoryService();
    SubCategory subCategory = subCategoryService.getById(subCategoryId);
    return subCategory.getProducts();
  }
 
  public Collection<ProductListing> getProductsByCategory(Serializable categoryId) {
    ProductDAO repository = new ProductDAO();
    return repository.getProductsByCategory(categoryId);
  }
 
  public Collection<ProductListing> searchProductsByNameOrDescription(String searchTerm) {
    ProductDAO repository = new ProductDAO();
    return repository.searchProductsByNameOrDescription(searchTerm);
  }
}
TOP

Related Classes of com.ateam.webstore.service.impl.ProductService

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.