Package com.arcusys.learn.persistence.liferay.model.impl

Examples of com.arcusys.learn.persistence.liferay.model.impl.LFAchievementActivityImpl


     * @param id the primary key for the new l f achievement activity
     * @return the new l f achievement activity
     */
    @Override
    public LFAchievementActivity create(long id) {
        LFAchievementActivity lfAchievementActivity = new LFAchievementActivityImpl();

        lfAchievementActivity.setNew(true);
        lfAchievementActivity.setPrimaryKey(id);

        return lfAchievementActivity;
    }
View Full Code Here


        LFAchievementActivity lfAchievementActivity) {
        if (lfAchievementActivity instanceof LFAchievementActivityImpl) {
            return lfAchievementActivity;
        }

        LFAchievementActivityImpl lfAchievementActivityImpl = new LFAchievementActivityImpl();

        lfAchievementActivityImpl.setNew(lfAchievementActivity.isNew());
        lfAchievementActivityImpl.setPrimaryKey(lfAchievementActivity.getPrimaryKey());

        lfAchievementActivityImpl.setId(lfAchievementActivity.getId());
        lfAchievementActivityImpl.setUserId(lfAchievementActivity.getUserId());
        lfAchievementActivityImpl.setAchievementId(lfAchievementActivity.getAchievementId());

        return lfAchievementActivityImpl;
    }
View Full Code Here

TOP

Related Classes of com.arcusys.learn.persistence.liferay.model.impl.LFAchievementActivityImpl

Copyright © 2018 www.massapicom. 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.