com.liferay.portlet.blogs.service
Interface BlogsStatsUserLocalService

All Known Implementing Classes:
BlogsStatsUserLocalServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface BlogsStatsUserLocalService

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface defines the service. The default implementation is com.liferay.portlet.blogs.service.impl.BlogsStatsUserLocalServiceImpl}. Modify methods in that class and rerun ServiceBuilder to populate this class and all other generated classes.

This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.

Author:
Brian Wing Shun Chan
See Also:
BlogsStatsUserLocalServiceUtil
Generated:

Method Summary
 BlogsStatsUser addBlogsStatsUser(BlogsStatsUser blogsStatsUser)
           
 BlogsStatsUser createBlogsStatsUser(long statsUserId)
           
 void deleteBlogsStatsUser(BlogsStatsUser blogsStatsUser)
           
 void deleteBlogsStatsUser(long statsUserId)
           
 void deleteStatsUserByGroupId(long groupId)
           
 void deleteStatsUserByUserId(long userId)
           
 java.util.List dynamicQuery(DynamicQuery dynamicQuery)
           
 java.util.List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
 java.util.List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
 long dynamicQueryCount(DynamicQuery dynamicQuery)
           
 BlogsStatsUser getBlogsStatsUser(long statsUserId)
           
 java.util.List<BlogsStatsUser> getBlogsStatsUsers(int start, int end)
           
 int getBlogsStatsUsersCount()
           
 java.util.List<BlogsStatsUser> getCompanyStatsUsers(long companyId, int start, int end)
           
 java.util.List<BlogsStatsUser> getCompanyStatsUsers(long companyId, int start, int end, OrderByComparator obc)
           
 int getCompanyStatsUsersCount(long companyId)
           
 java.util.List<BlogsStatsUser> getGroupsStatsUsers(long companyId, long groupId, int start, int end)
           
 java.util.List<BlogsStatsUser> getGroupStatsUsers(long groupId, int start, int end)
           
 java.util.List<BlogsStatsUser> getGroupStatsUsers(long groupId, int start, int end, OrderByComparator obc)
           
 int getGroupStatsUsersCount(long groupId)
           
 java.util.List<BlogsStatsUser> getOrganizationStatsUsers(long organizationId, int start, int end)
           
 java.util.List<BlogsStatsUser> getOrganizationStatsUsers(long organizationId, int start, int end, OrderByComparator obc)
           
 int getOrganizationStatsUsersCount(long organizationId)
           
 BlogsStatsUser getStatsUser(long groupId, long userId)
           
 BlogsStatsUser updateBlogsStatsUser(BlogsStatsUser blogsStatsUser)
           
 BlogsStatsUser updateBlogsStatsUser(BlogsStatsUser blogsStatsUser, boolean merge)
           
 void updateStatsUser(long groupId, long userId)
           
 void updateStatsUser(long groupId, long userId, java.util.Date displayDate)
           
 

Method Detail

addBlogsStatsUser

BlogsStatsUser addBlogsStatsUser(BlogsStatsUser blogsStatsUser)
                                 throws SystemException
Throws:
SystemException

createBlogsStatsUser

BlogsStatsUser createBlogsStatsUser(long statsUserId)

deleteBlogsStatsUser

void deleteBlogsStatsUser(long statsUserId)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

deleteBlogsStatsUser

void deleteBlogsStatsUser(BlogsStatsUser blogsStatsUser)
                          throws SystemException
Throws:
SystemException

dynamicQuery

java.util.List dynamicQuery(DynamicQuery dynamicQuery)
                            throws SystemException
Throws:
SystemException

dynamicQuery

java.util.List dynamicQuery(DynamicQuery dynamicQuery,
                            int start,
                            int end)
                            throws SystemException
Throws:
SystemException

dynamicQuery

java.util.List dynamicQuery(DynamicQuery dynamicQuery,
                            int start,
                            int end,
                            OrderByComparator orderByComparator)
                            throws SystemException
Throws:
SystemException

dynamicQueryCount

long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Throws:
SystemException

getBlogsStatsUser

@Transactional(propagation=SUPPORTS,
               readOnly=true)
BlogsStatsUser getBlogsStatsUser(long statsUserId)
                                 throws PortalException,
                                        SystemException
Throws:
PortalException
SystemException

getBlogsStatsUsers

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<BlogsStatsUser> getBlogsStatsUsers(int start,
                                                                                           int end)
                                                  throws SystemException
Throws:
SystemException

getBlogsStatsUsersCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getBlogsStatsUsersCount()
                            throws SystemException
Throws:
SystemException

updateBlogsStatsUser

BlogsStatsUser updateBlogsStatsUser(BlogsStatsUser blogsStatsUser)
                                    throws SystemException
Throws:
SystemException

updateBlogsStatsUser

BlogsStatsUser updateBlogsStatsUser(BlogsStatsUser blogsStatsUser,
                                    boolean merge)
                                    throws SystemException
Throws:
SystemException

deleteStatsUserByGroupId

void deleteStatsUserByGroupId(long groupId)
                              throws SystemException
Throws:
SystemException

deleteStatsUserByUserId

void deleteStatsUserByUserId(long userId)
                             throws SystemException
Throws:
SystemException

getCompanyStatsUsers

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<BlogsStatsUser> getCompanyStatsUsers(long companyId,
                                                                                             int start,
                                                                                             int end)
                                                    throws SystemException
Throws:
SystemException

getCompanyStatsUsers

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<BlogsStatsUser> getCompanyStatsUsers(long companyId,
                                                                                             int start,
                                                                                             int end,
                                                                                             OrderByComparator obc)
                                                    throws SystemException
Throws:
SystemException

getCompanyStatsUsersCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getCompanyStatsUsersCount(long companyId)
                              throws SystemException
Throws:
SystemException

getGroupsStatsUsers

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<BlogsStatsUser> getGroupsStatsUsers(long companyId,
                                                                                            long groupId,
                                                                                            int start,
                                                                                            int end)
                                                   throws SystemException
Throws:
SystemException

getGroupStatsUsers

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<BlogsStatsUser> getGroupStatsUsers(long groupId,
                                                                                           int start,
                                                                                           int end)
                                                  throws SystemException
Throws:
SystemException

getGroupStatsUsers

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<BlogsStatsUser> getGroupStatsUsers(long groupId,
                                                                                           int start,
                                                                                           int end,
                                                                                           OrderByComparator obc)
                                                  throws SystemException
Throws:
SystemException

getGroupStatsUsersCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getGroupStatsUsersCount(long groupId)
                            throws SystemException
Throws:
SystemException

getOrganizationStatsUsers

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<BlogsStatsUser> getOrganizationStatsUsers(long organizationId,
                                                                                                  int start,
                                                                                                  int end)
                                                         throws SystemException
Throws:
SystemException

getOrganizationStatsUsers

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<BlogsStatsUser> getOrganizationStatsUsers(long organizationId,
                                                                                                  int start,
                                                                                                  int end,
                                                                                                  OrderByComparator obc)
                                                         throws SystemException
Throws:
SystemException

getOrganizationStatsUsersCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getOrganizationStatsUsersCount(long organizationId)
                                   throws SystemException
Throws:
SystemException

getStatsUser

@Transactional(propagation=SUPPORTS,
               readOnly=true)
BlogsStatsUser getStatsUser(long groupId,
                                                                     long userId)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

updateStatsUser

void updateStatsUser(long groupId,
                     long userId)
                     throws PortalException,
                            SystemException
Throws:
PortalException
SystemException

updateStatsUser

void updateStatsUser(long groupId,
                     long userId,
                     java.util.Date displayDate)
                     throws PortalException,
                            SystemException
Throws:
PortalException
SystemException