Examples of LFSequencingTrackingModelImpl


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

        throws SystemException {
        lfSequencingTracking = toUnwrappedModel(lfSequencingTracking);

        boolean isNew = lfSequencingTracking.isNew();

        LFSequencingTrackingModelImpl lfSequencingTrackingModelImpl = (LFSequencingTrackingModelImpl) lfSequencingTracking;

        Session session = null;

        try {
            session = openSession();

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

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

        FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);

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

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

                args = new Object[] {
                        lfSequencingTrackingModelImpl.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.