Liferay 6.0.5

com.liferay.portlet.blogs.service.persistence
Class BlogsEntryUtil

java.lang.Object
  extended by com.liferay.portlet.blogs.service.persistence.BlogsEntryUtil

public class BlogsEntryUtil
extends Object

The persistence utility for the blogs entry service. This utility wraps BlogsEntryPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regenerate this class.

Caching information and settings can be found in portal.properties

See Also:
BlogsEntryPersistence, BlogsEntryPersistenceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
BlogsEntryUtil()
           
 
Method Summary
static void cacheResult(BlogsEntry blogsEntry)
          Caches the blogs entry in the entity cache if it is enabled.
static void cacheResult(List<BlogsEntry> blogsEntries)
          Caches the blogs entries in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(BlogsEntry blogsEntry)
           
static int countAll()
          Counts all the blogs entries.
static int countByC_LtD_S(long companyId, Date displayDate, int status)
          Counts all the blogs entries where companyId = ? and displayDate < ? and status = ?.
static int countByC_LtD(long companyId, Date displayDate)
          Counts all the blogs entries where companyId = ? and displayDate < ?.
static int countByC_S(long companyId, int status)
          Counts all the blogs entries where companyId = ? and status = ?.
static int countByC_U_S(long companyId, long userId, int status)
          Counts all the blogs entries where companyId = ? and userId = ? and status = ?.
static int countByC_U(long companyId, long userId)
          Counts all the blogs entries where companyId = ? and userId = ?.
static int countByCompanyId(long companyId)
          Counts all the blogs entries where companyId = ?.
static int countByG_LtD_S(long groupId, Date displayDate, int status)
          Counts all the blogs entries where groupId = ? and displayDate < ? and status = ?.
static int countByG_LtD(long groupId, Date displayDate)
          Counts all the blogs entries where groupId = ? and displayDate < ?.
static int countByG_S(long groupId, int status)
          Counts all the blogs entries where groupId = ? and status = ?.
static int countByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
          Counts all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
static int countByG_U_LtD(long groupId, long userId, Date displayDate)
          Counts all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
static int countByG_U_S(long groupId, long userId, int status)
          Counts all the blogs entries where groupId = ? and userId = ? and status = ?.
static int countByG_UT(long groupId, String urlTitle)
          Counts all the blogs entries where groupId = ? and urlTitle = ?.
static int countByGroupId(long groupId)
          Counts all the blogs entries where groupId = ?.
static int countByUUID_G(String uuid, long groupId)
          Counts all the blogs entries where uuid = ? and groupId = ?.
static int countByUuid(String uuid)
          Counts all the blogs entries where uuid = ?.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static BlogsEntry create(long entryId)
          Creates a new blogs entry with the primary key.
static BlogsEntry fetchByG_UT(long groupId, String urlTitle)
          Finds the blogs entry where groupId = ? and urlTitle = ? or returns null if it could not be found.
static BlogsEntry fetchByG_UT(long groupId, String urlTitle, boolean retrieveFromCache)
          Finds the blogs entry where groupId = ? and urlTitle = ? or returns null if it could not be found, optionally using the finder cache.
static BlogsEntry fetchByPrimaryKey(long entryId)
          Finds the blogs entry with the primary key or returns null if it could not be found.
static BlogsEntry fetchByUUID_G(String uuid, long groupId)
          Finds the blogs entry where uuid = ? and groupId = ? or returns null if it could not be found.
static BlogsEntry fetchByUUID_G(String uuid, long groupId, boolean retrieveFromCache)
          Finds the blogs entry where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
static int filterCountByG_LtD_S(long groupId, Date displayDate, int status)
          Filters by the user's permissions and counts all the blogs entries where groupId = ? and displayDate < ? and status = ?.
static int filterCountByG_LtD(long groupId, Date displayDate)
          Filters by the user's permissions and counts all the blogs entries where groupId = ? and displayDate < ?.
static int filterCountByG_S(long groupId, int status)
          Filters by the user's permissions and counts all the blogs entries where groupId = ? and status = ?.
static int filterCountByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
          Filters by the user's permissions and counts all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
static int filterCountByG_U_LtD(long groupId, long userId, Date displayDate)
          Filters by the user's permissions and counts all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
static int filterCountByG_U_S(long groupId, long userId, int status)
          Filters by the user's permissions and counts all the blogs entries where groupId = ? and userId = ? and status = ?.
static int filterCountByG_UT(long groupId, String urlTitle)
          Filters by the user's permissions and counts all the blogs entries where groupId = ? and urlTitle = ?.
static int filterCountByGroupId(long groupId)
          Filters by the user's permissions and counts all the blogs entries where groupId = ?.
static List<BlogsEntry> filterFindByG_LtD_S(long groupId, Date displayDate, int status)
          Filters by the user's permissions and finds all the blogs entries where groupId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> filterFindByG_LtD_S(long groupId, Date displayDate, int status, int start, int end)
          Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> filterFindByG_LtD_S(long groupId, Date displayDate, int status, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> filterFindByG_LtD(long groupId, Date displayDate)
          Filters by the user's permissions and finds all the blogs entries where groupId = ? and displayDate < ?.
static List<BlogsEntry> filterFindByG_LtD(long groupId, Date displayDate, int start, int end)
          Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and displayDate < ?.
static List<BlogsEntry> filterFindByG_LtD(long groupId, Date displayDate, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and displayDate < ?.
static List<BlogsEntry> filterFindByG_S(long groupId, int status)
          Filters by the user's permissions and finds all the blogs entries where groupId = ? and status = ?.
static List<BlogsEntry> filterFindByG_S(long groupId, int status, int start, int end)
          Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and status = ?.
static List<BlogsEntry> filterFindByG_S(long groupId, int status, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and status = ?.
static List<BlogsEntry> filterFindByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
          Filters by the user's permissions and finds all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> filterFindByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end)
          Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> filterFindByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> filterFindByG_U_LtD(long groupId, long userId, Date displayDate)
          Filters by the user's permissions and finds all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
static List<BlogsEntry> filterFindByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end)
          Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
static List<BlogsEntry> filterFindByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
static List<BlogsEntry> filterFindByG_U_S(long groupId, long userId, int status)
          Filters by the user's permissions and finds all the blogs entries where groupId = ? and userId = ? and status = ?.
static List<BlogsEntry> filterFindByG_U_S(long groupId, long userId, int status, int start, int end)
          Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and userId = ? and status = ?.
static List<BlogsEntry> filterFindByG_U_S(long groupId, long userId, int status, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and userId = ? and status = ?.
static List<BlogsEntry> filterFindByGroupId(long groupId)
          Filters by the user's permissions and finds all the blogs entries where groupId = ?.
static List<BlogsEntry> filterFindByGroupId(long groupId, int start, int end)
          Filters by the user's permissions and finds a range of all the blogs entries where groupId = ?.
static List<BlogsEntry> filterFindByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ?.
static List<BlogsEntry> findAll()
          Finds all the blogs entries.
static List<BlogsEntry> findAll(int start, int end)
          Finds a range of all the blogs entries.
static List<BlogsEntry> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries.
static BlogsEntry findByC_LtD_First(long companyId, Date displayDate, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where companyId = ? and displayDate < ?.
static BlogsEntry findByC_LtD_Last(long companyId, Date displayDate, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where companyId = ? and displayDate < ?.
static BlogsEntry[] findByC_LtD_PrevAndNext(long entryId, long companyId, Date displayDate, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and displayDate < ?.
static BlogsEntry findByC_LtD_S_First(long companyId, Date displayDate, int status, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
static BlogsEntry findByC_LtD_S_Last(long companyId, Date displayDate, int status, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
static BlogsEntry[] findByC_LtD_S_PrevAndNext(long entryId, long companyId, Date displayDate, int status, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByC_LtD_S(long companyId, Date displayDate, int status)
          Finds all the blogs entries where companyId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByC_LtD_S(long companyId, Date displayDate, int status, int start, int end)
          Finds a range of all the blogs entries where companyId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByC_LtD_S(long companyId, Date displayDate, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where companyId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByC_LtD(long companyId, Date displayDate)
          Finds all the blogs entries where companyId = ? and displayDate < ?.
static List<BlogsEntry> findByC_LtD(long companyId, Date displayDate, int start, int end)
          Finds a range of all the blogs entries where companyId = ? and displayDate < ?.
static List<BlogsEntry> findByC_LtD(long companyId, Date displayDate, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where companyId = ? and displayDate < ?.
static BlogsEntry findByC_S_First(long companyId, int status, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where companyId = ? and status = ?.
static BlogsEntry findByC_S_Last(long companyId, int status, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where companyId = ? and status = ?.
static BlogsEntry[] findByC_S_PrevAndNext(long entryId, long companyId, int status, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and status = ?.
static List<BlogsEntry> findByC_S(long companyId, int status)
          Finds all the blogs entries where companyId = ? and status = ?.
static List<BlogsEntry> findByC_S(long companyId, int status, int start, int end)
          Finds a range of all the blogs entries where companyId = ? and status = ?.
static List<BlogsEntry> findByC_S(long companyId, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where companyId = ? and status = ?.
static BlogsEntry findByC_U_First(long companyId, long userId, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where companyId = ? and userId = ?.
static BlogsEntry findByC_U_Last(long companyId, long userId, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where companyId = ? and userId = ?.
static BlogsEntry[] findByC_U_PrevAndNext(long entryId, long companyId, long userId, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and userId = ?.
static BlogsEntry findByC_U_S_First(long companyId, long userId, int status, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
static BlogsEntry findByC_U_S_Last(long companyId, long userId, int status, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
static BlogsEntry[] findByC_U_S_PrevAndNext(long entryId, long companyId, long userId, int status, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.
static List<BlogsEntry> findByC_U_S(long companyId, long userId, int status)
          Finds all the blogs entries where companyId = ? and userId = ? and status = ?.
static List<BlogsEntry> findByC_U_S(long companyId, long userId, int status, int start, int end)
          Finds a range of all the blogs entries where companyId = ? and userId = ? and status = ?.
static List<BlogsEntry> findByC_U_S(long companyId, long userId, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where companyId = ? and userId = ? and status = ?.
static List<BlogsEntry> findByC_U(long companyId, long userId)
          Finds all the blogs entries where companyId = ? and userId = ?.
static List<BlogsEntry> findByC_U(long companyId, long userId, int start, int end)
          Finds a range of all the blogs entries where companyId = ? and userId = ?.
static List<BlogsEntry> findByC_U(long companyId, long userId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where companyId = ? and userId = ?.
static BlogsEntry findByCompanyId_First(long companyId, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where companyId = ?.
static BlogsEntry findByCompanyId_Last(long companyId, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where companyId = ?.
static BlogsEntry[] findByCompanyId_PrevAndNext(long entryId, long companyId, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ?.
static List<BlogsEntry> findByCompanyId(long companyId)
          Finds all the blogs entries where companyId = ?.
static List<BlogsEntry> findByCompanyId(long companyId, int start, int end)
          Finds a range of all the blogs entries where companyId = ?.
static List<BlogsEntry> findByCompanyId(long companyId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where companyId = ?.
static BlogsEntry findByG_LtD_First(long groupId, Date displayDate, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where groupId = ? and displayDate < ?.
static BlogsEntry findByG_LtD_Last(long groupId, Date displayDate, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where groupId = ? and displayDate < ?.
static BlogsEntry[] findByG_LtD_PrevAndNext(long entryId, long groupId, Date displayDate, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate < ?.
static BlogsEntry findByG_LtD_S_First(long groupId, Date displayDate, int status, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
static BlogsEntry findByG_LtD_S_Last(long groupId, Date displayDate, int status, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
static BlogsEntry[] findByG_LtD_S_PrevAndNext(long entryId, long groupId, Date displayDate, int status, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByG_LtD_S(long groupId, Date displayDate, int status)
          Finds all the blogs entries where groupId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByG_LtD_S(long groupId, Date displayDate, int status, int start, int end)
          Finds a range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByG_LtD_S(long groupId, Date displayDate, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByG_LtD(long groupId, Date displayDate)
          Finds all the blogs entries where groupId = ? and displayDate < ?.
static List<BlogsEntry> findByG_LtD(long groupId, Date displayDate, int start, int end)
          Finds a range of all the blogs entries where groupId = ? and displayDate < ?.
static List<BlogsEntry> findByG_LtD(long groupId, Date displayDate, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where groupId = ? and displayDate < ?.
static BlogsEntry findByG_S_First(long groupId, int status, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where groupId = ? and status = ?.
static BlogsEntry findByG_S_Last(long groupId, int status, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where groupId = ? and status = ?.
static BlogsEntry[] findByG_S_PrevAndNext(long entryId, long groupId, int status, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and status = ?.
static List<BlogsEntry> findByG_S(long groupId, int status)
          Finds all the blogs entries where groupId = ? and status = ?.
static List<BlogsEntry> findByG_S(long groupId, int status, int start, int end)
          Finds a range of all the blogs entries where groupId = ? and status = ?.
static List<BlogsEntry> findByG_S(long groupId, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where groupId = ? and status = ?.
static BlogsEntry findByG_U_LtD_First(long groupId, long userId, Date displayDate, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
static BlogsEntry findByG_U_LtD_Last(long groupId, long userId, Date displayDate, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
static BlogsEntry[] findByG_U_LtD_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.
static BlogsEntry findByG_U_LtD_S_First(long groupId, long userId, Date displayDate, int status, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
static BlogsEntry findByG_U_LtD_S_Last(long groupId, long userId, Date displayDate, int status, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
static BlogsEntry[] findByG_U_LtD_S_PrevAndNext(long entryId, long groupId, long userId, Date displayDate, int status, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
          Finds all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end)
          Finds a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByG_U_LtD_S(long groupId, long userId, Date displayDate, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.
static List<BlogsEntry> findByG_U_LtD(long groupId, long userId, Date displayDate)
          Finds all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
static List<BlogsEntry> findByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end)
          Finds a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
static List<BlogsEntry> findByG_U_LtD(long groupId, long userId, Date displayDate, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.
static BlogsEntry findByG_U_S_First(long groupId, long userId, int status, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
static BlogsEntry findByG_U_S_Last(long groupId, long userId, int status, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
static BlogsEntry[] findByG_U_S_PrevAndNext(long entryId, long groupId, long userId, int status, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.
static List<BlogsEntry> findByG_U_S(long groupId, long userId, int status)
          Finds all the blogs entries where groupId = ? and userId = ? and status = ?.
static List<BlogsEntry> findByG_U_S(long groupId, long userId, int status, int start, int end)
          Finds a range of all the blogs entries where groupId = ? and userId = ? and status = ?.
static List<BlogsEntry> findByG_U_S(long groupId, long userId, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where groupId = ? and userId = ? and status = ?.
static BlogsEntry findByG_UT(long groupId, String urlTitle)
          Finds the blogs entry where groupId = ? and urlTitle = ? or throws a NoSuchEntryException if it could not be found.
static BlogsEntry findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where groupId = ?.
static BlogsEntry findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where groupId = ?.
static BlogsEntry[] findByGroupId_PrevAndNext(long entryId, long groupId, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ?.
static List<BlogsEntry> findByGroupId(long groupId)
          Finds all the blogs entries where groupId = ?.
static List<BlogsEntry> findByGroupId(long groupId, int start, int end)
          Finds a range of all the blogs entries where groupId = ?.
static List<BlogsEntry> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where groupId = ?.
static BlogsEntry findByPrimaryKey(long entryId)
          Finds the blogs entry with the primary key or throws a NoSuchEntryException if it could not be found.
static BlogsEntry findByUuid_First(String uuid, OrderByComparator orderByComparator)
          Finds the first blogs entry in the ordered set where uuid = ?.
static BlogsEntry findByUUID_G(String uuid, long groupId)
          Finds the blogs entry where uuid = ? and groupId = ? or throws a NoSuchEntryException if it could not be found.
static BlogsEntry findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Finds the last blogs entry in the ordered set where uuid = ?.
static BlogsEntry[] findByUuid_PrevAndNext(long entryId, String uuid, OrderByComparator orderByComparator)
          Finds the blogs entries before and after the current blogs entry in the ordered set where uuid = ?.
static List<BlogsEntry> findByUuid(String uuid)
          Finds all the blogs entries where uuid = ?.
static List<BlogsEntry> findByUuid(String uuid, int start, int end)
          Finds a range of all the blogs entries where uuid = ?.
static List<BlogsEntry> findByUuid(String uuid, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the blogs entries where uuid = ?.
static List<BlogsEntry> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<BlogsEntry> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<BlogsEntry> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static BlogsEntryPersistence getPersistence()
           
static BlogsEntry remove(BlogsEntry blogsEntry)
           
static BlogsEntry remove(long entryId)
          Removes the blogs entry with the primary key from the database.
static void removeAll()
          Removes all the blogs entries from the database.
static void removeByC_LtD_S(long companyId, Date displayDate, int status)
          Removes all the blogs entries where companyId = ? and displayDate < ? and status = ? from the database.
static void removeByC_LtD(long companyId, Date displayDate)
          Removes all the blogs entries where companyId = ? and displayDate < ? from the database.
static void removeByC_S(long companyId, int status)
          Removes all the blogs entries where companyId = ? and status = ? from the database.
static void removeByC_U_S(long companyId, long userId, int status)
          Removes all the blogs entries where companyId = ? and userId = ? and status = ? from the database.
static void removeByC_U(long companyId, long userId)
          Removes all the blogs entries where companyId = ? and userId = ? from the database.
static void removeByCompanyId(long companyId)
          Removes all the blogs entries where companyId = ? from the database.
static void removeByG_LtD_S(long groupId, Date displayDate, int status)
          Removes all the blogs entries where groupId = ? and displayDate < ? and status = ? from the database.
static void removeByG_LtD(long groupId, Date displayDate)
          Removes all the blogs entries where groupId = ? and displayDate < ? from the database.
static void removeByG_S(long groupId, int status)
          Removes all the blogs entries where groupId = ? and status = ? from the database.
static void removeByG_U_LtD_S(long groupId, long userId, Date displayDate, int status)
          Removes all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ? from the database.
static void removeByG_U_LtD(long groupId, long userId, Date displayDate)
          Removes all the blogs entries where groupId = ? and userId = ? and displayDate < ? from the database.
static void removeByG_U_S(long groupId, long userId, int status)
          Removes all the blogs entries where groupId = ? and userId = ? and status = ? from the database.
static void removeByG_UT(long groupId, String urlTitle)
          Removes the blogs entry where groupId = ? and urlTitle = ? from the database.
static void removeByGroupId(long groupId)
          Removes all the blogs entries where groupId = ? from the database.
static void removeByUUID_G(String uuid, long groupId)
          Removes the blogs entry where uuid = ? and groupId = ? from the database.
static void removeByUuid(String uuid)
          Removes all the blogs entries where uuid = ? from the database.
 void setPersistence(BlogsEntryPersistence persistence)
           
static BlogsEntry update(BlogsEntry blogsEntry, boolean merge)
           
static BlogsEntry update(BlogsEntry blogsEntry, boolean merge, ServiceContext serviceContext)
           
static BlogsEntry updateImpl(BlogsEntry blogsEntry, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BlogsEntryUtil

public BlogsEntryUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(BlogsEntry blogsEntry)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public long countWithDynamicQuery(DynamicQuery dynamicQuery)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<BlogsEntry> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                             throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<BlogsEntry> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                    int start,
                                                    int end)
                                             throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<BlogsEntry> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                    int start,
                                                    int end,
                                                    OrderByComparator orderByComparator)
                                             throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

remove

public static BlogsEntry remove(BlogsEntry blogsEntry)
                         throws SystemException
Throws:
SystemException
See Also:
BasePersistence.remove(com.liferay.portal.model.BaseModel)

update

public static BlogsEntry update(BlogsEntry blogsEntry,
                                boolean merge)
                         throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)

update

public static BlogsEntry update(BlogsEntry blogsEntry,
                                boolean merge,
                                ServiceContext serviceContext)
                         throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)

cacheResult

public static void cacheResult(BlogsEntry blogsEntry)
Caches the blogs entry in the entity cache if it is enabled.

Parameters:
blogsEntry - the blogs entry to cache

cacheResult

public static void cacheResult(List<BlogsEntry> blogsEntries)
Caches the blogs entries in the entity cache if it is enabled.

Parameters:
blogsEntries - the blogs entries to cache

create

public static BlogsEntry create(long entryId)
Creates a new blogs entry with the primary key. Does not add the blogs entry to the database.

Parameters:
entryId - the primary key for the new blogs entry
Returns:
the new blogs entry

remove

public static BlogsEntry remove(long entryId)
                         throws SystemException,
                                NoSuchEntryException
Removes the blogs entry with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
entryId - the primary key of the blogs entry to remove
Returns:
the blogs entry that was removed
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static BlogsEntry updateImpl(BlogsEntry blogsEntry,
                                    boolean merge)
                             throws SystemException
Throws:
SystemException

findByPrimaryKey

public static BlogsEntry findByPrimaryKey(long entryId)
                                   throws SystemException,
                                          NoSuchEntryException
Finds the blogs entry with the primary key or throws a NoSuchEntryException if it could not be found.

Parameters:
entryId - the primary key of the blogs entry to find
Returns:
the blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static BlogsEntry fetchByPrimaryKey(long entryId)
                                    throws SystemException
Finds the blogs entry with the primary key or returns null if it could not be found.

Parameters:
entryId - the primary key of the blogs entry to find
Returns:
the blogs entry, or null if a blogs entry with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<BlogsEntry> findByUuid(String uuid)
                                   throws SystemException
Finds all the blogs entries where uuid = ?.

Parameters:
uuid - the uuid to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<BlogsEntry> findByUuid(String uuid,
                                          int start,
                                          int end)
                                   throws SystemException
Finds a range of all the blogs entries where uuid = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
uuid - the uuid to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<BlogsEntry> findByUuid(String uuid,
                                          int start,
                                          int end,
                                          OrderByComparator orderByComparator)
                                   throws SystemException
Finds an ordered range of all the blogs entries where uuid = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
uuid - the uuid to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByUuid_First

public static BlogsEntry findByUuid_First(String uuid,
                                          OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchEntryException
Finds the first blogs entry in the ordered set where uuid = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByUuid_Last

public static BlogsEntry findByUuid_Last(String uuid,
                                         OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchEntryException
Finds the last blogs entry in the ordered set where uuid = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByUuid_PrevAndNext

public static BlogsEntry[] findByUuid_PrevAndNext(long entryId,
                                                  String uuid,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException,
                                                  NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where uuid = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

findByUUID_G

public static BlogsEntry findByUUID_G(String uuid,
                                      long groupId)
                               throws SystemException,
                                      NoSuchEntryException
Finds the blogs entry where uuid = ? and groupId = ? or throws a NoSuchEntryException if it could not be found.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

fetchByUUID_G

public static BlogsEntry fetchByUUID_G(String uuid,
                                       long groupId)
                                throws SystemException
Finds the blogs entry where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching blogs entry, or null if a matching blogs entry could not be found
Throws:
SystemException - if a system exception occurred

fetchByUUID_G

public static BlogsEntry fetchByUUID_G(String uuid,
                                       long groupId,
                                       boolean retrieveFromCache)
                                throws SystemException
Finds the blogs entry where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching blogs entry, or null if a matching blogs entry could not be found
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<BlogsEntry> findByGroupId(long groupId)
                                      throws SystemException
Finds all the blogs entries where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<BlogsEntry> findByGroupId(long groupId,
                                             int start,
                                             int end)
                                      throws SystemException
Finds a range of all the blogs entries where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<BlogsEntry> findByGroupId(long groupId,
                                             int start,
                                             int end,
                                             OrderByComparator orderByComparator)
                                      throws SystemException
Finds an ordered range of all the blogs entries where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByGroupId_First

public static BlogsEntry findByGroupId_First(long groupId,
                                             OrderByComparator orderByComparator)
                                      throws SystemException,
                                             NoSuchEntryException
Finds the first blogs entry in the ordered set where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByGroupId_Last

public static BlogsEntry findByGroupId_Last(long groupId,
                                            OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchEntryException
Finds the last blogs entry in the ordered set where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByGroupId_PrevAndNext

public static BlogsEntry[] findByGroupId_PrevAndNext(long entryId,
                                                     long groupId,
                                                     OrderByComparator orderByComparator)
                                              throws SystemException,
                                                     NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

filterFindByGroupId

public static List<BlogsEntry> filterFindByGroupId(long groupId)
                                            throws SystemException
Filters by the user's permissions and finds all the blogs entries where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

public static List<BlogsEntry> filterFindByGroupId(long groupId,
                                                   int start,
                                                   int end)
                                            throws SystemException
Filters by the user's permissions and finds a range of all the blogs entries where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

public static List<BlogsEntry> filterFindByGroupId(long groupId,
                                                   int start,
                                                   int end,
                                                   OrderByComparator orderByComparator)
                                            throws SystemException
Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByCompanyId

public static List<BlogsEntry> findByCompanyId(long companyId)
                                        throws SystemException
Finds all the blogs entries where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByCompanyId

public static List<BlogsEntry> findByCompanyId(long companyId,
                                               int start,
                                               int end)
                                        throws SystemException
Finds a range of all the blogs entries where companyId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByCompanyId

public static List<BlogsEntry> findByCompanyId(long companyId,
                                               int start,
                                               int end,
                                               OrderByComparator orderByComparator)
                                        throws SystemException
Finds an ordered range of all the blogs entries where companyId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByCompanyId_First

public static BlogsEntry findByCompanyId_First(long companyId,
                                               OrderByComparator orderByComparator)
                                        throws SystemException,
                                               NoSuchEntryException
Finds the first blogs entry in the ordered set where companyId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByCompanyId_Last

public static BlogsEntry findByCompanyId_Last(long companyId,
                                              OrderByComparator orderByComparator)
                                       throws SystemException,
                                              NoSuchEntryException
Finds the last blogs entry in the ordered set where companyId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByCompanyId_PrevAndNext

public static BlogsEntry[] findByCompanyId_PrevAndNext(long entryId,
                                                       long companyId,
                                                       OrderByComparator orderByComparator)
                                                throws SystemException,
                                                       NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

findByC_U

public static List<BlogsEntry> findByC_U(long companyId,
                                         long userId)
                                  throws SystemException
Finds all the blogs entries where companyId = ? and userId = ?.

Parameters:
companyId - the company id to search with
userId - the user id to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_U

public static List<BlogsEntry> findByC_U(long companyId,
                                         long userId,
                                         int start,
                                         int end)
                                  throws SystemException
Finds a range of all the blogs entries where companyId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
userId - the user id to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_U

public static List<BlogsEntry> findByC_U(long companyId,
                                         long userId,
                                         int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                  throws SystemException
Finds an ordered range of all the blogs entries where companyId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
userId - the user id to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_U_First

public static BlogsEntry findByC_U_First(long companyId,
                                         long userId,
                                         OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchEntryException
Finds the first blogs entry in the ordered set where companyId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByC_U_Last

public static BlogsEntry findByC_U_Last(long companyId,
                                        long userId,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchEntryException
Finds the last blogs entry in the ordered set where companyId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByC_U_PrevAndNext

public static BlogsEntry[] findByC_U_PrevAndNext(long entryId,
                                                 long companyId,
                                                 long userId,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException,
                                                 NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
companyId - the company id to search with
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

findByC_LtD

public static List<BlogsEntry> findByC_LtD(long companyId,
                                           Date displayDate)
                                    throws SystemException
Finds all the blogs entries where companyId = ? and displayDate < ?.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_LtD

public static List<BlogsEntry> findByC_LtD(long companyId,
                                           Date displayDate,
                                           int start,
                                           int end)
                                    throws SystemException
Finds a range of all the blogs entries where companyId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_LtD

public static List<BlogsEntry> findByC_LtD(long companyId,
                                           Date displayDate,
                                           int start,
                                           int end,
                                           OrderByComparator orderByComparator)
                                    throws SystemException
Finds an ordered range of all the blogs entries where companyId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_LtD_First

public static BlogsEntry findByC_LtD_First(long companyId,
                                           Date displayDate,
                                           OrderByComparator orderByComparator)
                                    throws SystemException,
                                           NoSuchEntryException
Finds the first blogs entry in the ordered set where companyId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByC_LtD_Last

public static BlogsEntry findByC_LtD_Last(long companyId,
                                          Date displayDate,
                                          OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchEntryException
Finds the last blogs entry in the ordered set where companyId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByC_LtD_PrevAndNext

public static BlogsEntry[] findByC_LtD_PrevAndNext(long entryId,
                                                   long companyId,
                                                   Date displayDate,
                                                   OrderByComparator orderByComparator)
                                            throws SystemException,
                                                   NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
companyId - the company id to search with
displayDate - the display date to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

findByC_S

public static List<BlogsEntry> findByC_S(long companyId,
                                         int status)
                                  throws SystemException
Finds all the blogs entries where companyId = ? and status = ?.

Parameters:
companyId - the company id to search with
status - the status to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_S

public static List<BlogsEntry> findByC_S(long companyId,
                                         int status,
                                         int start,
                                         int end)
                                  throws SystemException
Finds a range of all the blogs entries where companyId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_S

public static List<BlogsEntry> findByC_S(long companyId,
                                         int status,
                                         int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                  throws SystemException
Finds an ordered range of all the blogs entries where companyId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_S_First

public static BlogsEntry findByC_S_First(long companyId,
                                         int status,
                                         OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchEntryException
Finds the first blogs entry in the ordered set where companyId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByC_S_Last

public static BlogsEntry findByC_S_Last(long companyId,
                                        int status,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchEntryException
Finds the last blogs entry in the ordered set where companyId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByC_S_PrevAndNext

public static BlogsEntry[] findByC_S_PrevAndNext(long entryId,
                                                 long companyId,
                                                 int status,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException,
                                                 NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
companyId - the company id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

findByG_UT

public static BlogsEntry findByG_UT(long groupId,
                                    String urlTitle)
                             throws SystemException,
                                    NoSuchEntryException
Finds the blogs entry where groupId = ? and urlTitle = ? or throws a NoSuchEntryException if it could not be found.

Parameters:
groupId - the group id to search with
urlTitle - the url title to search with
Returns:
the matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

fetchByG_UT

public static BlogsEntry fetchByG_UT(long groupId,
                                     String urlTitle)
                              throws SystemException
Finds the blogs entry where groupId = ? and urlTitle = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
groupId - the group id to search with
urlTitle - the url title to search with
Returns:
the matching blogs entry, or null if a matching blogs entry could not be found
Throws:
SystemException - if a system exception occurred

fetchByG_UT

public static BlogsEntry fetchByG_UT(long groupId,
                                     String urlTitle,
                                     boolean retrieveFromCache)
                              throws SystemException
Finds the blogs entry where groupId = ? and urlTitle = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
groupId - the group id to search with
urlTitle - the url title to search with
Returns:
the matching blogs entry, or null if a matching blogs entry could not be found
Throws:
SystemException - if a system exception occurred

findByG_LtD

public static List<BlogsEntry> findByG_LtD(long groupId,
                                           Date displayDate)
                                    throws SystemException
Finds all the blogs entries where groupId = ? and displayDate < ?.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_LtD

public static List<BlogsEntry> findByG_LtD(long groupId,
                                           Date displayDate,
                                           int start,
                                           int end)
                                    throws SystemException
Finds a range of all the blogs entries where groupId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_LtD

public static List<BlogsEntry> findByG_LtD(long groupId,
                                           Date displayDate,
                                           int start,
                                           int end,
                                           OrderByComparator orderByComparator)
                                    throws SystemException
Finds an ordered range of all the blogs entries where groupId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_LtD_First

public static BlogsEntry findByG_LtD_First(long groupId,
                                           Date displayDate,
                                           OrderByComparator orderByComparator)
                                    throws SystemException,
                                           NoSuchEntryException
Finds the first blogs entry in the ordered set where groupId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_LtD_Last

public static BlogsEntry findByG_LtD_Last(long groupId,
                                          Date displayDate,
                                          OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchEntryException
Finds the last blogs entry in the ordered set where groupId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_LtD_PrevAndNext

public static BlogsEntry[] findByG_LtD_PrevAndNext(long entryId,
                                                   long groupId,
                                                   Date displayDate,
                                                   OrderByComparator orderByComparator)
                                            throws SystemException,
                                                   NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
groupId - the group id to search with
displayDate - the display date to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_LtD

public static List<BlogsEntry> filterFindByG_LtD(long groupId,
                                                 Date displayDate)
                                          throws SystemException
Filters by the user's permissions and finds all the blogs entries where groupId = ? and displayDate < ?.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
Returns:
the matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_LtD

public static List<BlogsEntry> filterFindByG_LtD(long groupId,
                                                 Date displayDate,
                                                 int start,
                                                 int end)
                                          throws SystemException
Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_LtD

public static List<BlogsEntry> filterFindByG_LtD(long groupId,
                                                 Date displayDate,
                                                 int start,
                                                 int end,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException
Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByG_S

public static List<BlogsEntry> findByG_S(long groupId,
                                         int status)
                                  throws SystemException
Finds all the blogs entries where groupId = ? and status = ?.

Parameters:
groupId - the group id to search with
status - the status to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_S

public static List<BlogsEntry> findByG_S(long groupId,
                                         int status,
                                         int start,
                                         int end)
                                  throws SystemException
Finds a range of all the blogs entries where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_S

public static List<BlogsEntry> findByG_S(long groupId,
                                         int status,
                                         int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                  throws SystemException
Finds an ordered range of all the blogs entries where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_S_First

public static BlogsEntry findByG_S_First(long groupId,
                                         int status,
                                         OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchEntryException
Finds the first blogs entry in the ordered set where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_S_Last

public static BlogsEntry findByG_S_Last(long groupId,
                                        int status,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchEntryException
Finds the last blogs entry in the ordered set where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_S_PrevAndNext

public static BlogsEntry[] findByG_S_PrevAndNext(long entryId,
                                                 long groupId,
                                                 int status,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException,
                                                 NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
groupId - the group id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_S

public static List<BlogsEntry> filterFindByG_S(long groupId,
                                               int status)
                                        throws SystemException
Filters by the user's permissions and finds all the blogs entries where groupId = ? and status = ?.

Parameters:
groupId - the group id to search with
status - the status to search with
Returns:
the matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_S

public static List<BlogsEntry> filterFindByG_S(long groupId,
                                               int status,
                                               int start,
                                               int end)
                                        throws SystemException
Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_S

public static List<BlogsEntry> filterFindByG_S(long groupId,
                                               int status,
                                               int start,
                                               int end,
                                               OrderByComparator orderByComparator)
                                        throws SystemException
Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByC_U_S

public static List<BlogsEntry> findByC_U_S(long companyId,
                                           long userId,
                                           int status)
                                    throws SystemException
Finds all the blogs entries where companyId = ? and userId = ? and status = ?.

Parameters:
companyId - the company id to search with
userId - the user id to search with
status - the status to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_U_S

public static List<BlogsEntry> findByC_U_S(long companyId,
                                           long userId,
                                           int status,
                                           int start,
                                           int end)
                                    throws SystemException
Finds a range of all the blogs entries where companyId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
userId - the user id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_U_S

public static List<BlogsEntry> findByC_U_S(long companyId,
                                           long userId,
                                           int status,
                                           int start,
                                           int end,
                                           OrderByComparator orderByComparator)
                                    throws SystemException
Finds an ordered range of all the blogs entries where companyId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
userId - the user id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_U_S_First

public static BlogsEntry findByC_U_S_First(long companyId,
                                           long userId,
                                           int status,
                                           OrderByComparator orderByComparator)
                                    throws SystemException,
                                           NoSuchEntryException
Finds the first blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
userId - the user id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByC_U_S_Last

public static BlogsEntry findByC_U_S_Last(long companyId,
                                          long userId,
                                          int status,
                                          OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchEntryException
Finds the last blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
userId - the user id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByC_U_S_PrevAndNext

public static BlogsEntry[] findByC_U_S_PrevAndNext(long entryId,
                                                   long companyId,
                                                   long userId,
                                                   int status,
                                                   OrderByComparator orderByComparator)
                                            throws SystemException,
                                                   NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
companyId - the company id to search with
userId - the user id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

findByC_LtD_S

public static List<BlogsEntry> findByC_LtD_S(long companyId,
                                             Date displayDate,
                                             int status)
                                      throws SystemException
Finds all the blogs entries where companyId = ? and displayDate < ? and status = ?.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
status - the status to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_LtD_S

public static List<BlogsEntry> findByC_LtD_S(long companyId,
                                             Date displayDate,
                                             int status,
                                             int start,
                                             int end)
                                      throws SystemException
Finds a range of all the blogs entries where companyId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_LtD_S

public static List<BlogsEntry> findByC_LtD_S(long companyId,
                                             Date displayDate,
                                             int status,
                                             int start,
                                             int end,
                                             OrderByComparator orderByComparator)
                                      throws SystemException
Finds an ordered range of all the blogs entries where companyId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByC_LtD_S_First

public static BlogsEntry findByC_LtD_S_First(long companyId,
                                             Date displayDate,
                                             int status,
                                             OrderByComparator orderByComparator)
                                      throws SystemException,
                                             NoSuchEntryException
Finds the first blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByC_LtD_S_Last

public static BlogsEntry findByC_LtD_S_Last(long companyId,
                                            Date displayDate,
                                            int status,
                                            OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchEntryException
Finds the last blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByC_LtD_S_PrevAndNext

public static BlogsEntry[] findByC_LtD_S_PrevAndNext(long entryId,
                                                     long companyId,
                                                     Date displayDate,
                                                     int status,
                                                     OrderByComparator orderByComparator)
                                              throws SystemException,
                                                     NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where companyId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
companyId - the company id to search with
displayDate - the display date to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

findByG_U_LtD

public static List<BlogsEntry> findByG_U_LtD(long groupId,
                                             long userId,
                                             Date displayDate)
                                      throws SystemException
Finds all the blogs entries where groupId = ? and userId = ? and displayDate < ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_U_LtD

public static List<BlogsEntry> findByG_U_LtD(long groupId,
                                             long userId,
                                             Date displayDate,
                                             int start,
                                             int end)
                                      throws SystemException
Finds a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_U_LtD

public static List<BlogsEntry> findByG_U_LtD(long groupId,
                                             long userId,
                                             Date displayDate,
                                             int start,
                                             int end,
                                             OrderByComparator orderByComparator)
                                      throws SystemException
Finds an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_U_LtD_First

public static BlogsEntry findByG_U_LtD_First(long groupId,
                                             long userId,
                                             Date displayDate,
                                             OrderByComparator orderByComparator)
                                      throws SystemException,
                                             NoSuchEntryException
Finds the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_U_LtD_Last

public static BlogsEntry findByG_U_LtD_Last(long groupId,
                                            long userId,
                                            Date displayDate,
                                            OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchEntryException
Finds the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_U_LtD_PrevAndNext

public static BlogsEntry[] findByG_U_LtD_PrevAndNext(long entryId,
                                                     long groupId,
                                                     long userId,
                                                     Date displayDate,
                                                     OrderByComparator orderByComparator)
                                              throws SystemException,
                                                     NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_U_LtD

public static List<BlogsEntry> filterFindByG_U_LtD(long groupId,
                                                   long userId,
                                                   Date displayDate)
                                            throws SystemException
Filters by the user's permissions and finds all the blogs entries where groupId = ? and userId = ? and displayDate < ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
Returns:
the matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_U_LtD

public static List<BlogsEntry> filterFindByG_U_LtD(long groupId,
                                                   long userId,
                                                   Date displayDate,
                                                   int start,
                                                   int end)
                                            throws SystemException
Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_U_LtD

public static List<BlogsEntry> filterFindByG_U_LtD(long groupId,
                                                   long userId,
                                                   Date displayDate,
                                                   int start,
                                                   int end,
                                                   OrderByComparator orderByComparator)
                                            throws SystemException
Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByG_U_S

public static List<BlogsEntry> findByG_U_S(long groupId,
                                           long userId,
                                           int status)
                                    throws SystemException
Finds all the blogs entries where groupId = ? and userId = ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_U_S

public static List<BlogsEntry> findByG_U_S(long groupId,
                                           long userId,
                                           int status,
                                           int start,
                                           int end)
                                    throws SystemException
Finds a range of all the blogs entries where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_U_S

public static List<BlogsEntry> findByG_U_S(long groupId,
                                           long userId,
                                           int status,
                                           int start,
                                           int end,
                                           OrderByComparator orderByComparator)
                                    throws SystemException
Finds an ordered range of all the blogs entries where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_U_S_First

public static BlogsEntry findByG_U_S_First(long groupId,
                                           long userId,
                                           int status,
                                           OrderByComparator orderByComparator)
                                    throws SystemException,
                                           NoSuchEntryException
Finds the first blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_U_S_Last

public static BlogsEntry findByG_U_S_Last(long groupId,
                                          long userId,
                                          int status,
                                          OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchEntryException
Finds the last blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_U_S_PrevAndNext

public static BlogsEntry[] findByG_U_S_PrevAndNext(long entryId,
                                                   long groupId,
                                                   long userId,
                                                   int status,
                                                   OrderByComparator orderByComparator)
                                            throws SystemException,
                                                   NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_U_S

public static List<BlogsEntry> filterFindByG_U_S(long groupId,
                                                 long userId,
                                                 int status)
                                          throws SystemException
Filters by the user's permissions and finds all the blogs entries where groupId = ? and userId = ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
Returns:
the matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_U_S

public static List<BlogsEntry> filterFindByG_U_S(long groupId,
                                                 long userId,
                                                 int status,
                                                 int start,
                                                 int end)
                                          throws SystemException
Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_U_S

public static List<BlogsEntry> filterFindByG_U_S(long groupId,
                                                 long userId,
                                                 int status,
                                                 int start,
                                                 int end,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException
Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByG_LtD_S

public static List<BlogsEntry> findByG_LtD_S(long groupId,
                                             Date displayDate,
                                             int status)
                                      throws SystemException
Finds all the blogs entries where groupId = ? and displayDate < ? and status = ?.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_LtD_S

public static List<BlogsEntry> findByG_LtD_S(long groupId,
                                             Date displayDate,
                                             int status,
                                             int start,
                                             int end)
                                      throws SystemException
Finds a range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_LtD_S

public static List<BlogsEntry> findByG_LtD_S(long groupId,
                                             Date displayDate,
                                             int status,
                                             int start,
                                             int end,
                                             OrderByComparator orderByComparator)
                                      throws SystemException
Finds an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_LtD_S_First

public static BlogsEntry findByG_LtD_S_First(long groupId,
                                             Date displayDate,
                                             int status,
                                             OrderByComparator orderByComparator)
                                      throws SystemException,
                                             NoSuchEntryException
Finds the first blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_LtD_S_Last

public static BlogsEntry findByG_LtD_S_Last(long groupId,
                                            Date displayDate,
                                            int status,
                                            OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchEntryException
Finds the last blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_LtD_S_PrevAndNext

public static BlogsEntry[] findByG_LtD_S_PrevAndNext(long entryId,
                                                     long groupId,
                                                     Date displayDate,
                                                     int status,
                                                     OrderByComparator orderByComparator)
                                              throws SystemException,
                                                     NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_LtD_S

public static List<BlogsEntry> filterFindByG_LtD_S(long groupId,
                                                   Date displayDate,
                                                   int status)
                                            throws SystemException
Filters by the user's permissions and finds all the blogs entries where groupId = ? and displayDate < ? and status = ?.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
Returns:
the matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_LtD_S

public static List<BlogsEntry> filterFindByG_LtD_S(long groupId,
                                                   Date displayDate,
                                                   int status,
                                                   int start,
                                                   int end)
                                            throws SystemException
Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_LtD_S

public static List<BlogsEntry> filterFindByG_LtD_S(long groupId,
                                                   Date displayDate,
                                                   int status,
                                                   int start,
                                                   int end,
                                                   OrderByComparator orderByComparator)
                                            throws SystemException
Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByG_U_LtD_S

public static List<BlogsEntry> findByG_U_LtD_S(long groupId,
                                               long userId,
                                               Date displayDate,
                                               int status)
                                        throws SystemException
Finds all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
Returns:
the matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_U_LtD_S

public static List<BlogsEntry> findByG_U_LtD_S(long groupId,
                                               long userId,
                                               Date displayDate,
                                               int status,
                                               int start,
                                               int end)
                                        throws SystemException
Finds a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_U_LtD_S

public static List<BlogsEntry> findByG_U_LtD_S(long groupId,
                                               long userId,
                                               Date displayDate,
                                               int status,
                                               int start,
                                               int end,
                                               OrderByComparator orderByComparator)
                                        throws SystemException
Finds an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries
Throws:
SystemException - if a system exception occurred

findByG_U_LtD_S_First

public static BlogsEntry findByG_U_LtD_S_First(long groupId,
                                               long userId,
                                               Date displayDate,
                                               int status,
                                               OrderByComparator orderByComparator)
                                        throws SystemException,
                                               NoSuchEntryException
Finds the first blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_U_LtD_S_Last

public static BlogsEntry findByG_U_LtD_S_Last(long groupId,
                                              long userId,
                                              Date displayDate,
                                              int status,
                                              OrderByComparator orderByComparator)
                                       throws SystemException,
                                              NoSuchEntryException
Finds the last blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching blogs entry
Throws:
NoSuchEntryException - if a matching blogs entry could not be found
SystemException - if a system exception occurred

findByG_U_LtD_S_PrevAndNext

public static BlogsEntry[] findByG_U_LtD_S_PrevAndNext(long entryId,
                                                       long groupId,
                                                       long userId,
                                                       Date displayDate,
                                                       int status,
                                                       OrderByComparator orderByComparator)
                                                throws SystemException,
                                                       NoSuchEntryException
Finds the blogs entries before and after the current blogs entry in the ordered set where groupId = ? and userId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
entryId - the primary key of the current blogs entry
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next blogs entry
Throws:
NoSuchEntryException - if a blogs entry with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_U_LtD_S

public static List<BlogsEntry> filterFindByG_U_LtD_S(long groupId,
                                                     long userId,
                                                     Date displayDate,
                                                     int status)
                                              throws SystemException
Filters by the user's permissions and finds all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
Returns:
the matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_U_LtD_S

public static List<BlogsEntry> filterFindByG_U_LtD_S(long groupId,
                                                     long userId,
                                                     Date displayDate,
                                                     int status,
                                                     int start,
                                                     int end)
                                              throws SystemException
Filters by the user's permissions and finds a range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_U_LtD_S

public static List<BlogsEntry> filterFindByG_U_LtD_S(long groupId,
                                                     long userId,
                                                     Date displayDate,
                                                     int status,
                                                     int start,
                                                     int end,
                                                     OrderByComparator orderByComparator)
                                              throws SystemException
Filters by the user's permissions and finds an ordered range of all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

findAll

public static List<BlogsEntry> findAll()
                                throws SystemException
Finds all the blogs entries.

Returns:
the blogs entries
Throws:
SystemException - if a system exception occurred

findAll

public static List<BlogsEntry> findAll(int start,
                                       int end)
                                throws SystemException
Finds a range of all the blogs entries.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
Returns:
the range of blogs entries
Throws:
SystemException - if a system exception occurred

findAll

public static List<BlogsEntry> findAll(int start,
                                       int end,
                                       OrderByComparator orderByComparator)
                                throws SystemException
Finds an ordered range of all the blogs entries.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
start - the lower bound of the range of blogs entries to return
end - the upper bound of the range of blogs entries to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of blogs entries
Throws:
SystemException - if a system exception occurred

removeByUuid

public static void removeByUuid(String uuid)
                         throws SystemException
Removes all the blogs entries where uuid = ? from the database.

Parameters:
uuid - the uuid to search with
Throws:
SystemException - if a system exception occurred

removeByUUID_G

public static void removeByUUID_G(String uuid,
                                  long groupId)
                           throws SystemException,
                                  NoSuchEntryException
Removes the blogs entry where uuid = ? and groupId = ? from the database.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Throws:
SystemException - if a system exception occurred
NoSuchEntryException

removeByGroupId

public static void removeByGroupId(long groupId)
                            throws SystemException
Removes all the blogs entries where groupId = ? from the database.

Parameters:
groupId - the group id to search with
Throws:
SystemException - if a system exception occurred

removeByCompanyId

public static void removeByCompanyId(long companyId)
                              throws SystemException
Removes all the blogs entries where companyId = ? from the database.

Parameters:
companyId - the company id to search with
Throws:
SystemException - if a system exception occurred

removeByC_U

public static void removeByC_U(long companyId,
                               long userId)
                        throws SystemException
Removes all the blogs entries where companyId = ? and userId = ? from the database.

Parameters:
companyId - the company id to search with
userId - the user id to search with
Throws:
SystemException - if a system exception occurred

removeByC_LtD

public static void removeByC_LtD(long companyId,
                                 Date displayDate)
                          throws SystemException
Removes all the blogs entries where companyId = ? and displayDate < ? from the database.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
Throws:
SystemException - if a system exception occurred

removeByC_S

public static void removeByC_S(long companyId,
                               int status)
                        throws SystemException
Removes all the blogs entries where companyId = ? and status = ? from the database.

Parameters:
companyId - the company id to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByG_UT

public static void removeByG_UT(long groupId,
                                String urlTitle)
                         throws SystemException,
                                NoSuchEntryException
Removes the blogs entry where groupId = ? and urlTitle = ? from the database.

Parameters:
groupId - the group id to search with
urlTitle - the url title to search with
Throws:
SystemException - if a system exception occurred
NoSuchEntryException

removeByG_LtD

public static void removeByG_LtD(long groupId,
                                 Date displayDate)
                          throws SystemException
Removes all the blogs entries where groupId = ? and displayDate < ? from the database.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
Throws:
SystemException - if a system exception occurred

removeByG_S

public static void removeByG_S(long groupId,
                               int status)
                        throws SystemException
Removes all the blogs entries where groupId = ? and status = ? from the database.

Parameters:
groupId - the group id to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByC_U_S

public static void removeByC_U_S(long companyId,
                                 long userId,
                                 int status)
                          throws SystemException
Removes all the blogs entries where companyId = ? and userId = ? and status = ? from the database.

Parameters:
companyId - the company id to search with
userId - the user id to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByC_LtD_S

public static void removeByC_LtD_S(long companyId,
                                   Date displayDate,
                                   int status)
                            throws SystemException
Removes all the blogs entries where companyId = ? and displayDate < ? and status = ? from the database.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByG_U_LtD

public static void removeByG_U_LtD(long groupId,
                                   long userId,
                                   Date displayDate)
                            throws SystemException
Removes all the blogs entries where groupId = ? and userId = ? and displayDate < ? from the database.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
Throws:
SystemException - if a system exception occurred

removeByG_U_S

public static void removeByG_U_S(long groupId,
                                 long userId,
                                 int status)
                          throws SystemException
Removes all the blogs entries where groupId = ? and userId = ? and status = ? from the database.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByG_LtD_S

public static void removeByG_LtD_S(long groupId,
                                   Date displayDate,
                                   int status)
                            throws SystemException
Removes all the blogs entries where groupId = ? and displayDate < ? and status = ? from the database.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByG_U_LtD_S

public static void removeByG_U_LtD_S(long groupId,
                                     long userId,
                                     Date displayDate,
                                     int status)
                              throws SystemException
Removes all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ? from the database.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeAll

public static void removeAll()
                      throws SystemException
Removes all the blogs entries from the database.

Throws:
SystemException - if a system exception occurred

countByUuid

public static int countByUuid(String uuid)
                       throws SystemException
Counts all the blogs entries where uuid = ?.

Parameters:
uuid - the uuid to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

countByUUID_G

public static int countByUUID_G(String uuid,
                                long groupId)
                         throws SystemException
Counts all the blogs entries where uuid = ? and groupId = ?.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

countByGroupId

public static int countByGroupId(long groupId)
                          throws SystemException
Counts all the blogs entries where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

filterCountByGroupId

public static int filterCountByGroupId(long groupId)
                                throws SystemException
Filters by the user's permissions and counts all the blogs entries where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the number of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByCompanyId

public static int countByCompanyId(long companyId)
                            throws SystemException
Counts all the blogs entries where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

countByC_U

public static int countByC_U(long companyId,
                             long userId)
                      throws SystemException
Counts all the blogs entries where companyId = ? and userId = ?.

Parameters:
companyId - the company id to search with
userId - the user id to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

countByC_LtD

public static int countByC_LtD(long companyId,
                               Date displayDate)
                        throws SystemException
Counts all the blogs entries where companyId = ? and displayDate < ?.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

countByC_S

public static int countByC_S(long companyId,
                             int status)
                      throws SystemException
Counts all the blogs entries where companyId = ? and status = ?.

Parameters:
companyId - the company id to search with
status - the status to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

countByG_UT

public static int countByG_UT(long groupId,
                              String urlTitle)
                       throws SystemException
Counts all the blogs entries where groupId = ? and urlTitle = ?.

Parameters:
groupId - the group id to search with
urlTitle - the url title to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

filterCountByG_UT

public static int filterCountByG_UT(long groupId,
                                    String urlTitle)
                             throws SystemException
Filters by the user's permissions and counts all the blogs entries where groupId = ? and urlTitle = ?.

Parameters:
groupId - the group id to search with
urlTitle - the url title to search with
Returns:
the number of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByG_LtD

public static int countByG_LtD(long groupId,
                               Date displayDate)
                        throws SystemException
Counts all the blogs entries where groupId = ? and displayDate < ?.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

filterCountByG_LtD

public static int filterCountByG_LtD(long groupId,
                                     Date displayDate)
                              throws SystemException
Filters by the user's permissions and counts all the blogs entries where groupId = ? and displayDate < ?.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
Returns:
the number of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByG_S

public static int countByG_S(long groupId,
                             int status)
                      throws SystemException
Counts all the blogs entries where groupId = ? and status = ?.

Parameters:
groupId - the group id to search with
status - the status to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

filterCountByG_S

public static int filterCountByG_S(long groupId,
                                   int status)
                            throws SystemException
Filters by the user's permissions and counts all the blogs entries where groupId = ? and status = ?.

Parameters:
groupId - the group id to search with
status - the status to search with
Returns:
the number of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByC_U_S

public static int countByC_U_S(long companyId,
                               long userId,
                               int status)
                        throws SystemException
Counts all the blogs entries where companyId = ? and userId = ? and status = ?.

Parameters:
companyId - the company id to search with
userId - the user id to search with
status - the status to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

countByC_LtD_S

public static int countByC_LtD_S(long companyId,
                                 Date displayDate,
                                 int status)
                          throws SystemException
Counts all the blogs entries where companyId = ? and displayDate < ? and status = ?.

Parameters:
companyId - the company id to search with
displayDate - the display date to search with
status - the status to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

countByG_U_LtD

public static int countByG_U_LtD(long groupId,
                                 long userId,
                                 Date displayDate)
                          throws SystemException
Counts all the blogs entries where groupId = ? and userId = ? and displayDate < ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

filterCountByG_U_LtD

public static int filterCountByG_U_LtD(long groupId,
                                       long userId,
                                       Date displayDate)
                                throws SystemException
Filters by the user's permissions and counts all the blogs entries where groupId = ? and userId = ? and displayDate < ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
Returns:
the number of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByG_U_S

public static int countByG_U_S(long groupId,
                               long userId,
                               int status)
                        throws SystemException
Counts all the blogs entries where groupId = ? and userId = ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

filterCountByG_U_S

public static int filterCountByG_U_S(long groupId,
                                     long userId,
                                     int status)
                              throws SystemException
Filters by the user's permissions and counts all the blogs entries where groupId = ? and userId = ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
Returns:
the number of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByG_LtD_S

public static int countByG_LtD_S(long groupId,
                                 Date displayDate,
                                 int status)
                          throws SystemException
Counts all the blogs entries where groupId = ? and displayDate < ? and status = ?.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

filterCountByG_LtD_S

public static int filterCountByG_LtD_S(long groupId,
                                       Date displayDate,
                                       int status)
                                throws SystemException
Filters by the user's permissions and counts all the blogs entries where groupId = ? and displayDate < ? and status = ?.

Parameters:
groupId - the group id to search with
displayDate - the display date to search with
status - the status to search with
Returns:
the number of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByG_U_LtD_S

public static int countByG_U_LtD_S(long groupId,
                                   long userId,
                                   Date displayDate,
                                   int status)
                            throws SystemException
Counts all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
Returns:
the number of matching blogs entries
Throws:
SystemException - if a system exception occurred

filterCountByG_U_LtD_S

public static int filterCountByG_U_LtD_S(long groupId,
                                         long userId,
                                         Date displayDate,
                                         int status)
                                  throws SystemException
Filters by the user's permissions and counts all the blogs entries where groupId = ? and userId = ? and displayDate < ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
displayDate - the display date to search with
status - the status to search with
Returns:
the number of matching blogs entries that the user has permission to view
Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Counts all the blogs entries.

Returns:
the number of blogs entries
Throws:
SystemException - if a system exception occurred

getPersistence

public static BlogsEntryPersistence getPersistence()

setPersistence

public void setPersistence(BlogsEntryPersistence persistence)

Liferay 6.0.5