Commit bf7ca3bd by Juho Juopperi

getCreditProduct stub

1 parent 3d78e2c5
......@@ -4,6 +4,8 @@ import javax.ejb.LocalBean;
import javax.ejb.Stateless;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
import fi.insomnia.bortal.model.Product;
@Stateless
......@@ -21,4 +23,8 @@ public class ProductFacade extends GenericFacade<Product> {
return em;
}
public Product getCreditProduct() {
throw new NotImplementedException();
}
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!