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