From ec60137010f697f41035ff1f2b5e0bd66eb00b91 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 15 Apr 2017 22:11:21 +0200 Subject: [PATCH] Categories may not be shown in statistics --- .../jproduct/model/category/Category.java | 15 ++++++ .../model/category/ProductCategory.java | 47 ++++++++++++++----- 2 files changed, 50 insertions(+), 12 deletions(-) diff --git a/src/org/mxchange/jproduct/model/category/Category.java b/src/org/mxchange/jproduct/model/category/Category.java index 7606fc6..37f1293 100644 --- a/src/org/mxchange/jproduct/model/category/Category.java +++ b/src/org/mxchange/jproduct/model/category/Category.java @@ -46,6 +46,21 @@ public interface Category extends Serializable { */ void setCategoryId (final Long id); + /** + * Getter for if category is shown in any statistics + *

+ * @return Whether this category is shown in any statistics + */ + Boolean getCategoryShownInStatistics (); + + /** + * Setter for if category is shown in any statistics + *

+ * @param categoryShownInStatistics Whether this category is shown in any + * statistics + */ + void setCategoryShownInStatistics (final Boolean categoryShownInStatistics); + /** * Parent category *

diff --git a/src/org/mxchange/jproduct/model/category/ProductCategory.java b/src/org/mxchange/jproduct/model/category/ProductCategory.java index 90f17d0..acb1f8e 100644 --- a/src/org/mxchange/jproduct/model/category/ProductCategory.java +++ b/src/org/mxchange/jproduct/model/category/ProductCategory.java @@ -53,6 +53,13 @@ public class ProductCategory implements Category { @Column (name = "category_id", nullable = false) private Long categoryId; + /** + * Whether this category is shown in any statistics + */ + @Basic (optional = false) + @Column (name = "category_in_statistics", nullable = false) + private Boolean categoryShownInStatistics; + /** * Title of category */ @@ -70,15 +77,18 @@ public class ProductCategory implements Category { /** * Constructor which accepts all database fields *

- * @param categoryId Id number of database record - * @param categoryTitle Category categoryTitle - * @param parentCategory Parent category + * @param categoryId Id number of database record + * @param categoryTitle Category categoryTitle + * @param parentCategory Parent category + * @param categoryShownInStatistics Whether this category is shown in any + * statistics */ - public ProductCategory (final Long categoryId, final String categoryTitle, final Category parentCategory) { + public ProductCategory (final Long categoryId, final String categoryTitle, final Category parentCategory, final Boolean categoryShownInStatistics) { // Set all here this.categoryId = categoryId; this.categoryTitle = categoryTitle; this.parentCategory = parentCategory; + this.categoryShownInStatistics = categoryShownInStatistics; } /** @@ -92,6 +102,7 @@ public class ProductCategory implements Category { // Copy all data this.setParentCategory(category.getParentCategory()); this.setCategoryTitle(category.getCategoryTitle()); + this.setCategoryShownInStatistics(category.getCategoryShownInStatistics()); } @Override @@ -110,19 +121,13 @@ public class ProductCategory implements Category { return false; } else if (!Objects.equals(this.getCategoryId(), other.getCategoryId())) { return false; + } else if (!Objects.equals(this.getCategoryShownInStatistics(), other.getCategoryShownInStatistics())) { + return false; } return true; } - @Override - public int hashCode () { - int hash = 7; - hash = 13 * hash + Objects.hashCode(this.getCategoryId()); - hash = 13 * hash + Objects.hashCode(this.getCategoryTitle()); - return hash; - } - @Override public Long getCategoryId () { return this.categoryId; @@ -133,6 +138,16 @@ public class ProductCategory implements Category { this.categoryId = categoryId; } + @Override + public Boolean getCategoryShownInStatistics () { + return this.categoryShownInStatistics; + } + + @Override + public void setCategoryShownInStatistics (final Boolean categoryShownInStatistics) { + this.categoryShownInStatistics = categoryShownInStatistics; + } + @Override public String getCategoryTitle () { return this.categoryTitle; @@ -153,4 +168,12 @@ public class ProductCategory implements Category { this.parentCategory = parentCategory; } + @Override + public int hashCode () { + int hash = 7; + hash = 13 * hash + Objects.hashCode(this.getCategoryId()); + hash = 13 * hash + Objects.hashCode(this.getCategoryTitle()); + return hash; + } + } -- 2.39.5