From: Roland Häder Date: Wed, 19 Dec 2018 19:08:19 +0000 (+0100) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d10e36dbf90501b1116df1b2781a7dbc208e0182;p=jproduct-lib.git Continued: - added business method updateProductCategory() Signed-off-by: Roland Häder --- diff --git a/src/org/mxchange/jproduct/model/category/AdminCategorySessionBeanRemote.java b/src/org/mxchange/jproduct/model/category/AdminCategorySessionBeanRemote.java index e7d7ba4..bf00aaf 100644 --- a/src/org/mxchange/jproduct/model/category/AdminCategorySessionBeanRemote.java +++ b/src/org/mxchange/jproduct/model/category/AdminCategorySessionBeanRemote.java @@ -39,4 +39,13 @@ public interface AdminCategorySessionBeanRemote extends Serializable { */ Category addProductCategory (final Category category) throws CategoryAlreadyAddedException; + /** + * Updates product category. + *

+ * @param category Category instance + *

+ * @return Updated category instance + */ + Category updateProductCategory (final Category category); + }