Package pl.com.bottega.ecommerce.sales.domain.equivalent.specification

Examples of pl.com.bottega.ecommerce.sales.domain.equivalent.specification.SimilarPrice


  @SuppressWarnings("unchecked")
  public Specification<Product> create(Client client,
      Product problematicProduct) {
    // TODO explore domain rules, maybe use genetic algorithm to breed spec;)
    return new DisjunctionSpecification<Product>(
          new SimilarPrice(problematicProduct.getPrice(), generateAcceptableDifference(client)),
          new SimilarName(problematicProduct.getName()),
          new SameCategory(problematicProduct.getProductType()));
  }
View Full Code Here

TOP

Related Classes of pl.com.bottega.ecommerce.sales.domain.equivalent.specification.SimilarPrice

Copyright © 2018 www.massapicom. 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.