Examples of LFSequencingPermissionsModelImpl


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

        throws SystemException {
        lfSequencingPermissions = toUnwrappedModel(lfSequencingPermissions);

        boolean isNew = lfSequencingPermissions.isNew();

        LFSequencingPermissionsModelImpl lfSequencingPermissionsModelImpl = (LFSequencingPermissionsModelImpl) lfSequencingPermissions;

        Session session = null;

        try {
            session = openSession();

            if (lfSequencingPermissions.isNew()) {
                session.save(lfSequencingPermissions);

                lfSequencingPermissions.setNew(false);
            } else {
                session.merge(lfSequencingPermissions);
            }
        } catch (Exception e) {
            throw processException(e);
        } finally {
            closeSession(session);
        }

        FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);

        if (isNew || !LFSequencingPermissionsModelImpl.COLUMN_BITMASK_ENABLED) {
            FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
        }
        else {
            if ((lfSequencingPermissionsModelImpl.getColumnBitmask() &
                    FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_SEQUENCINGID.getColumnBitmask()) != 0) {
                Object[] args = new Object[] {
                        lfSequencingPermissionsModelImpl.getOriginalSequencingID()
                    };

                FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_SEQUENCINGID,
                    args);
                FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_SEQUENCINGID,
                    args);

                args = new Object[] {
                        lfSequencingPermissionsModelImpl.getSequencingID()
                    };

                FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_SEQUENCINGID,
                    args);
                FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_SEQUENCINGID,
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.