1
22
23 package com.liferay.portlet.blogs.service;
24
25
51 public interface BlogsStatsUserLocalService {
52 public com.liferay.portlet.blogs.model.BlogsStatsUser addBlogsStatsUser(
53 com.liferay.portlet.blogs.model.BlogsStatsUser model)
54 throws com.liferay.portal.SystemException;
55
56 public java.util.List dynamicQuery(
57 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
58 throws com.liferay.portal.SystemException;
59
60 public java.util.List dynamicQuery(
61 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
62 int begin, int end) throws com.liferay.portal.SystemException;
63
64 public com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
65 com.liferay.portlet.blogs.model.BlogsStatsUser model)
66 throws com.liferay.portal.SystemException;
67
68 public void deleteStatsUserByGroupId(long groupId)
69 throws com.liferay.portal.SystemException;
70
71 public void deleteStatsUserByUserId(long userId)
72 throws com.liferay.portal.SystemException;
73
74 public java.util.List getCompanyStatsUsers(long companyId, int begin,
75 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
76 throws com.liferay.portal.SystemException;
77
78 public int getCompanyStatsUsersCount(long companyId)
79 throws com.liferay.portal.SystemException;
80
81 public java.util.List getGroupStatsUsers(long groupId, int begin, int end,
82 com.liferay.portal.kernel.util.OrderByComparator obc)
83 throws com.liferay.portal.SystemException;
84
85 public int getGroupStatsUsersCount(long groupId)
86 throws com.liferay.portal.SystemException;
87
88 public java.util.List getOrganizationStatsUsers(long organizationId,
89 int begin, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
90 throws com.liferay.portal.SystemException;
91
92 public int getOrganizationStatsUsersCount(long organizationId)
93 throws com.liferay.portal.SystemException;
94
95 public com.liferay.portlet.blogs.model.BlogsStatsUser getStatsUser(
96 long groupId, long userId)
97 throws com.liferay.portal.SystemException,
98 com.liferay.portal.PortalException;
99
100 public void updateStatsUser(long groupId, long userId,
101 java.util.Date lastPostDate)
102 throws com.liferay.portal.SystemException,
103 com.liferay.portal.PortalException;
104 }