Examples of MeetupsRegistrationModelImpl


Examples of com.liferay.socialnetworking.model.impl.MeetupsRegistrationModelImpl

      closeSession(session);
    }

    FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST);

    MeetupsRegistrationModelImpl meetupsRegistrationModelImpl = (MeetupsRegistrationModelImpl)meetupsRegistration;

    FinderCacheUtil.removeResult(FINDER_PATH_FETCH_BY_U_ME,
      new Object[] {
        new Long(meetupsRegistrationModelImpl.getOriginalUserId()),
        new Long(meetupsRegistrationModelImpl.getOriginalMeetupsEntryId())
      });

    EntityCacheUtil.removeResult(MeetupsRegistrationModelImpl.ENTITY_CACHE_ENABLED,
      MeetupsRegistrationImpl.class, meetupsRegistration.getPrimaryKey());
View Full Code Here

Examples of com.liferay.socialnetworking.model.impl.MeetupsRegistrationModelImpl

    boolean merge) throws SystemException {
    meetupsRegistration = toUnwrappedModel(meetupsRegistration);

    boolean isNew = meetupsRegistration.isNew();

    MeetupsRegistrationModelImpl meetupsRegistrationModelImpl = (MeetupsRegistrationModelImpl)meetupsRegistration;

    Session session = null;

    try {
      session = openSession();

      BatchSessionUtil.update(session, meetupsRegistration, merge);

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

    FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST);

    EntityCacheUtil.putResult(MeetupsRegistrationModelImpl.ENTITY_CACHE_ENABLED,
      MeetupsRegistrationImpl.class, meetupsRegistration.getPrimaryKey(),
      meetupsRegistration);

    if (!isNew &&
        ((meetupsRegistration.getUserId() != meetupsRegistrationModelImpl.getOriginalUserId()) ||
        (meetupsRegistration.getMeetupsEntryId() != meetupsRegistrationModelImpl.getOriginalMeetupsEntryId()))) {
      FinderCacheUtil.removeResult(FINDER_PATH_FETCH_BY_U_ME,
        new Object[] {
          new Long(meetupsRegistrationModelImpl.getOriginalUserId()),
          new Long(meetupsRegistrationModelImpl.getOriginalMeetupsEntryId())
        });
    }

    if (isNew ||
        ((meetupsRegistration.getUserId() != meetupsRegistrationModelImpl.getOriginalUserId()) ||
        (meetupsRegistration.getMeetupsEntryId() != meetupsRegistrationModelImpl.getOriginalMeetupsEntryId()))) {
      FinderCacheUtil.putResult(FINDER_PATH_FETCH_BY_U_ME,
        new Object[] {
          new Long(meetupsRegistration.getUserId()),
          new Long(meetupsRegistration.getMeetupsEntryId())
        }, meetupsRegistration);
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.