]> git.mxchange.org Git - jproduct-lib.git/blobdiff - src/org/mxchange/jproduct/model/category/AdminCategorySessionBeanRemote.java
Updated copyright year
[jproduct-lib.git] / src / org / mxchange / jproduct / model / category / AdminCategorySessionBeanRemote.java
index e2e00a775ac62e653a2be7805c3aaa3da576a631..4c532daf6b3e6ca23a8e9a37f9f97aff538ecf16 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016, 2017 Roland Häder
+ * Copyright (C) 2016 - 2020 Free Software Foundation
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -37,6 +37,15 @@ public interface AdminCategorySessionBeanRemote extends Serializable {
         * <p>
         * @throws CategoryAlreadyAddedException If the category cannot be added
         */
-       Category doAdminAddCategory (final Category category) throws CategoryAlreadyAddedException;
+       Category addProductCategory (final Category category) throws CategoryAlreadyAddedException;
+
+       /**
+        * Updates product category.
+        * <p>
+        * @param category Category instance
+        * <p>
+        * @return Updated category instance
+        */
+       Category updateProductCategory (final Category category);
 
 }