Examples of LFSequencingImpl


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

     * @param id the primary key for the new l f sequencing
     * @return the new l f sequencing
     */
    @Override
    public LFSequencing create(long id) {
        LFSequencing lfSequencing = new LFSequencingImpl();

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

        return lfSequencing;
    }
View Full Code Here

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

    protected LFSequencing toUnwrappedModel(LFSequencing lfSequencing) {
        if (lfSequencing instanceof LFSequencingImpl) {
            return lfSequencing;
        }

        LFSequencingImpl lfSequencingImpl = new LFSequencingImpl();

        lfSequencingImpl.setNew(lfSequencing.isNew());
        lfSequencingImpl.setPrimaryKey(lfSequencing.getPrimaryKey());

        lfSequencingImpl.setId(lfSequencing.getId());
        lfSequencingImpl.setPackageID(lfSequencing.getPackageID());
        lfSequencingImpl.setActivityID(lfSequencing.getActivityID());
        lfSequencingImpl.setSharedId(lfSequencing.getSharedId());
        lfSequencingImpl.setSharedSequencingIdReference(lfSequencing.getSharedSequencingIdReference());
        lfSequencingImpl.setCAttemptObjectiveProgressChild(lfSequencing.isCAttemptObjectiveProgressChild());
        lfSequencingImpl.setCAttemptAttemptProgressChild(lfSequencing.isCAttemptAttemptProgressChild());
        lfSequencingImpl.setAttemptLimit(lfSequencing.getAttemptLimit());
        lfSequencingImpl.setDurationLimitInMilliseconds(lfSequencing.getDurationLimitInMilliseconds());
        lfSequencingImpl.setRollupContributionID(lfSequencing.getRollupContributionID());
        lfSequencingImpl.setPreventChildrenActivation(lfSequencing.isPreventChildrenActivation());
        lfSequencingImpl.setConstrainChoice(lfSequencing.isConstrainChoice());

        return lfSequencingImpl;
    }
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.