Examples of UserPoint


Examples of org.jayasoft.woj.portal.model.UserPoint

                UserImpl user = (UserImpl)u;
                UserPointDao upDao = DaoFactory.getUserPointDao();
                FidelityOfferDao foDao = DaoFactory.getFidelityOfferDao();
                FidelityOffer fo = (FidelityOffer)foDao.find(giftId);
                if (fo != null) {
                    UserPoint oldUP = getUserPoint(user);
                    if (oldUP.getPoints() < fo.getNeededPoints()) {
                        throw new ServiceException(RessourceBundleApplicationMessage.error("woj.page.fidelity.offers.not.enough.points", null));
                    }
                    UserPoint up = UserPointFactory.orderGift(u, oldUP, fo);
                    upDao.save(up);
                    ServiceFactory.getRegistrationService().sendOrderGiftMail(user, Messages.DEFAULT.getString(fo.getKey()), fo.getNeededPoints(), up.getPoints());
                    LOGGER.info("removing " + fo.getNeededPoints() + " from user: " + user.getId() + ", he ordered: " + fo.getKey());
                } else {
                    LOGGER.warn("gift " + giftId + " not found on db");
                }
            } catch (DaoException e) {
View Full Code Here

Examples of org.jayasoft.woj.portal.model.UserPoint

                UserImpl user = (UserImpl)u;
                UserPointDao upDao = DaoFactory.getUserPointDao();
                Integer points = new Integer(Messages.DEFAULT.getString("woj.page.fidelity.offers.program.module.array.value"));
               
                if (points.intValue()>0) {
                    UserPoint oldUP = getUserPoint(user);
                    UserPoint up = UserPointFactory.promotion(u, oldUP, moduleName, points.intValue());
                    upDao.save(up);
                    ServiceFactory.getRegistrationService().sendFidelityAccountPointEarnedByUploadMail(user, moduleName, up.getEarnedPoints(), up.getPoints());                   
                    LOGGER.info("adding " + points + " to user: " + user.getId() + ", module: " + moduleName + " has been promoted");
                }
            } catch (DaoException e) {
                LOGGER.warn("cannot give fidelity points for promotion of " + moduleName + " for user " + u.getLogin() , e);
            }
View Full Code Here

Examples of org.jayasoft.woj.portal.model.UserPoint

            }
        );
    }

    public WOJObject newHandledObject() {
        return new UserPoint();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.