com.liferay.portlet.messageboards.service.persistence
Interface MBMessageFlagPersistence

All Superinterfaces:
BasePersistence

@Transactional(rollbackFor={com.liferay.portal.PortalException.class,com.liferay.portal.SystemException.class})
public interface MBMessageFlagPersistence
extends BasePersistence

View Source

Author:
Brian Wing Shun Chan

Method Summary
 int countAll()
           
 int countByMessageId(long messageId)
           
 int countByU_M(long userId, long messageId)
           
 int countByUserId(long userId)
           
 MBMessageFlag create(long messageFlagId)
           
 MBMessageFlag fetchByPrimaryKey(long messageFlagId)
           
 MBMessageFlag fetchByU_M(long userId, long messageId)
           
 java.util.List<MBMessageFlag> findAll()
           
 java.util.List<MBMessageFlag> findAll(int start, int end)
           
 java.util.List<MBMessageFlag> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 MBMessageFlag findByMessageId_First(long messageId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 MBMessageFlag findByMessageId_Last(long messageId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 MBMessageFlag[] findByMessageId_PrevAndNext(long messageFlagId, long messageId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 java.util.List<MBMessageFlag> findByMessageId(long messageId)
           
 java.util.List<MBMessageFlag> findByMessageId(long messageId, int start, int end)
           
 java.util.List<MBMessageFlag> findByMessageId(long messageId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 MBMessageFlag findByPrimaryKey(long messageFlagId)
           
 MBMessageFlag findByU_M(long userId, long messageId)
           
 MBMessageFlag findByUserId_First(long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 MBMessageFlag findByUserId_Last(long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 MBMessageFlag[] findByUserId_PrevAndNext(long messageFlagId, long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 java.util.List<MBMessageFlag> findByUserId(long userId)
           
 java.util.List<MBMessageFlag> findByUserId(long userId, int start, int end)
           
 java.util.List<MBMessageFlag> findByUserId(long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 java.util.List<java.lang.Object> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
           
 java.util.List<java.lang.Object> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
           
 MBMessageFlag remove(long messageFlagId)
           
 MBMessageFlag remove(MBMessageFlag mbMessageFlag)
           
 void removeAll()
           
 void removeByMessageId(long messageId)
           
 void removeByU_M(long userId, long messageId)
           
 void removeByUserId(long userId)
           
 MBMessageFlag update(MBMessageFlag mbMessageFlag)
          Deprecated. Use update(MBMessageFlag mbMessageFlag, boolean merge).
 MBMessageFlag update(MBMessageFlag mbMessageFlag, boolean merge)
          Add, update, or merge, the entity.
 MBMessageFlag updateImpl(MBMessageFlag mbMessageFlag, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
getListeners, registerListener, unregisterListener
 

Method Detail

create

MBMessageFlag create(long messageFlagId)

remove

MBMessageFlag remove(long messageFlagId)
                     throws com.liferay.portal.SystemException,
                            NoSuchMessageFlagException
Throws:
com.liferay.portal.SystemException
NoSuchMessageFlagException

remove

MBMessageFlag remove(MBMessageFlag mbMessageFlag)
                     throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

update

MBMessageFlag update(MBMessageFlag mbMessageFlag)
                     throws com.liferay.portal.SystemException
Deprecated. Use update(MBMessageFlag mbMessageFlag, boolean merge).

Throws:
com.liferay.portal.SystemException

update

MBMessageFlag update(MBMessageFlag mbMessageFlag,
                     boolean merge)
                     throws com.liferay.portal.SystemException
Add, update, or merge, the entity. This method also calls the model listeners to trigger the proper events associated with adding, deleting, or updating an entity.

Parameters:
mbMessageFlag - the entity to add, update, or merge
merge - boolean value for whether to merge the entity. The default value is false. Setting merge to true is more expensive and should only be true when mbMessageFlag is transient. See LEP-5473 for a detailed discussion of this method.
Returns:
true if the portlet can be displayed via Ajax
Throws:
com.liferay.portal.SystemException

updateImpl

MBMessageFlag updateImpl(MBMessageFlag mbMessageFlag,
                         boolean merge)
                         throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByPrimaryKey

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MBMessageFlag findByPrimaryKey(long messageFlagId)
                               throws com.liferay.portal.SystemException,
                                      NoSuchMessageFlagException
Throws:
com.liferay.portal.SystemException
NoSuchMessageFlagException

fetchByPrimaryKey

MBMessageFlag fetchByPrimaryKey(long messageFlagId)
                                throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByUserId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<MBMessageFlag> findByUserId(long userId)
                                           throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByUserId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<MBMessageFlag> findByUserId(long userId,
                                                         int start,
                                                         int end)
                                           throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByUserId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<MBMessageFlag> findByUserId(long userId,
                                                         int start,
                                                         int end,
                                                         com.liferay.portal.kernel.util.OrderByComparator obc)
                                           throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByUserId_First

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MBMessageFlag findByUserId_First(long userId,
                                               com.liferay.portal.kernel.util.OrderByComparator obc)
                                 throws com.liferay.portal.SystemException,
                                        NoSuchMessageFlagException
Throws:
com.liferay.portal.SystemException
NoSuchMessageFlagException

findByUserId_Last

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MBMessageFlag findByUserId_Last(long userId,
                                              com.liferay.portal.kernel.util.OrderByComparator obc)
                                throws com.liferay.portal.SystemException,
                                       NoSuchMessageFlagException
Throws:
com.liferay.portal.SystemException
NoSuchMessageFlagException

findByUserId_PrevAndNext

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MBMessageFlag[] findByUserId_PrevAndNext(long messageFlagId,
                                                       long userId,
                                                       com.liferay.portal.kernel.util.OrderByComparator obc)
                                         throws com.liferay.portal.SystemException,
                                                NoSuchMessageFlagException
Throws:
com.liferay.portal.SystemException
NoSuchMessageFlagException

findByMessageId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<MBMessageFlag> findByMessageId(long messageId)
                                              throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByMessageId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<MBMessageFlag> findByMessageId(long messageId,
                                                            int start,
                                                            int end)
                                              throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByMessageId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<MBMessageFlag> findByMessageId(long messageId,
                                                            int start,
                                                            int end,
                                                            com.liferay.portal.kernel.util.OrderByComparator obc)
                                              throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByMessageId_First

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MBMessageFlag findByMessageId_First(long messageId,
                                                  com.liferay.portal.kernel.util.OrderByComparator obc)
                                    throws com.liferay.portal.SystemException,
                                           NoSuchMessageFlagException
Throws:
com.liferay.portal.SystemException
NoSuchMessageFlagException

findByMessageId_Last

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MBMessageFlag findByMessageId_Last(long messageId,
                                                 com.liferay.portal.kernel.util.OrderByComparator obc)
                                   throws com.liferay.portal.SystemException,
                                          NoSuchMessageFlagException
Throws:
com.liferay.portal.SystemException
NoSuchMessageFlagException

findByMessageId_PrevAndNext

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MBMessageFlag[] findByMessageId_PrevAndNext(long messageFlagId,
                                                          long messageId,
                                                          com.liferay.portal.kernel.util.OrderByComparator obc)
                                            throws com.liferay.portal.SystemException,
                                                   NoSuchMessageFlagException
Throws:
com.liferay.portal.SystemException
NoSuchMessageFlagException

findByU_M

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MBMessageFlag findByU_M(long userId,
                                      long messageId)
                        throws com.liferay.portal.SystemException,
                               NoSuchMessageFlagException
Throws:
com.liferay.portal.SystemException
NoSuchMessageFlagException

fetchByU_M

MBMessageFlag fetchByU_M(long userId,
                         long messageId)
                         throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findWithDynamicQuery

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<java.lang.Object> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
                                                      throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findWithDynamicQuery

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<java.lang.Object> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
                                                                    int start,
                                                                    int end)
                                                      throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findAll

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<MBMessageFlag> findAll()
                                      throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findAll

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<MBMessageFlag> findAll(int start,
                                                    int end)
                                      throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findAll

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<MBMessageFlag> findAll(int start,
                                                    int end,
                                                    com.liferay.portal.kernel.util.OrderByComparator obc)
                                      throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

removeByUserId

void removeByUserId(long userId)
                    throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

removeByMessageId

void removeByMessageId(long messageId)
                       throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

removeByU_M

void removeByU_M(long userId,
                 long messageId)
                 throws com.liferay.portal.SystemException,
                        NoSuchMessageFlagException
Throws:
com.liferay.portal.SystemException
NoSuchMessageFlagException

removeAll

void removeAll()
               throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

countByUserId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int countByUserId(long userId)
                  throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

countByMessageId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int countByMessageId(long messageId)
                     throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

countByU_M

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int countByU_M(long userId,
                             long messageId)
               throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

countAll

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int countAll()
             throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException