]> git.mxchange.org Git - jproduct-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 15 Oct 2017 20:58:49 +0000 (22:58 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 15 Oct 2017 20:58:49 +0000 (22:58 +0200)
- removed find<Category|Product>ById() as this has been moved to WAR project
  (and later Swing) for performance reasons

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jproduct/model/category/CategorySessionBeanRemote.java
src/org/mxchange/jproduct/model/product/ProductSessionBeanRemote.java

index 468adf51c78978328a2f3f9016d38b77c4235615..2f991b5b55c05427e3de547dd6aa523bb215bdcd 100644 (file)
@@ -19,7 +19,6 @@ package org.mxchange.jproduct.model.category;
 import java.io.Serializable;
 import java.util.List;
 import javax.ejb.Remote;
-import org.mxchange.jproduct.exceptions.category.CategoryNotFoundException;
 
 /**
  * A remote-call interface for the shop
@@ -29,19 +28,6 @@ import org.mxchange.jproduct.exceptions.category.CategoryNotFoundException;
 @Remote
 public interface CategorySessionBeanRemote extends Serializable {
 
-       /**
-        * Returns a category instance (entity) for given primary key. If not found,
-        * a proper exception is thrown.
-        * <p>
-        * @param categoryId Category id (primary key)
-        * <p>
-        * @return Category entity matching to primary key
-        * <p>
-        * @throws CategoryNotFoundException If a category with given primary key
-        * could not be found
-        */
-       Category findCategoryById (final Long categoryId) throws CategoryNotFoundException;
-
        /**
         * Some "getter" for a linked list of all categories
         * <p>
index 109323c55aad07db9fcc987d39e15fa7ac3f0ff5..f3ff6913cbe6477ea24ee5fcf2f18f222c0405bb 100644 (file)
@@ -19,7 +19,6 @@ package org.mxchange.jproduct.model.product;
 import java.io.Serializable;
 import java.util.List;
 import javax.ejb.Remote;
-import org.mxchange.jproduct.exceptions.product.ProductNotFoundException;
 
 /**
  * An interface for non-administrative purposes
@@ -29,19 +28,6 @@ import org.mxchange.jproduct.exceptions.product.ProductNotFoundException;
 @Remote
 public interface ProductSessionBeanRemote extends Serializable {
 
-       /**
-        * Returns a product instance (entity) for given primary key. If not found,
-        * a proper exception is thrown.
-        * <p>
-        * @param productId Product id (primary key)
-        * <p>
-        * @return Product entity matching to primary key
-        * <p>
-        * @throws ProductNotFoundException If a product with given primary key
-        * could not be found
-        */
-       Product findProductById (final Long productId) throws ProductNotFoundException;
-
        /**
         * Returns a list of all products
         * <p>