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 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 com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence getBlogsEntryPersistence();
69
70 public void setBlogsEntryPersistence(
71 com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence blogsEntryPersistence);
72
73 public com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder getBlogsEntryFinder();
74
75 public void setBlogsEntryFinder(
76 com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder blogsEntryFinder);
77
78 public com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence getBlogsStatsUserPersistence();
79
80 public void setBlogsStatsUserPersistence(
81 com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence blogsStatsUserPersistence);
82
83 public com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder getBlogsStatsUserFinder();
84
85 public void setBlogsStatsUserFinder(
86 com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder blogsStatsUserFinder);
87
88 public com.liferay.portal.service.persistence.GroupPersistence getGroupPersistence();
89
90 public void setGroupPersistence(
91 com.liferay.portal.service.persistence.GroupPersistence groupPersistence);
92
93 public com.liferay.portal.service.persistence.GroupFinder getGroupFinder();
94
95 public void setGroupFinder(
96 com.liferay.portal.service.persistence.GroupFinder groupFinder);
97
98 public void afterPropertiesSet();
99
100 public void deleteStatsUserByGroupId(long groupId)
101 throws com.liferay.portal.SystemException;
102
103 public void deleteStatsUserByUserId(long userId)
104 throws com.liferay.portal.SystemException;
105
106 public java.util.List getCompanyStatsUsers(long companyId, int begin,
107 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
108 throws com.liferay.portal.SystemException;
109
110 public int getCompanyStatsUsersCount(long companyId)
111 throws com.liferay.portal.SystemException;
112
113 public java.util.List getGroupStatsUsers(long groupId, int begin, int end,
114 com.liferay.portal.kernel.util.OrderByComparator obc)
115 throws com.liferay.portal.SystemException;
116
117 public int getGroupStatsUsersCount(long groupId)
118 throws com.liferay.portal.SystemException;
119
120 public java.util.List getOrganizationStatsUsers(long organizationId,
121 int begin, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
122 throws com.liferay.portal.SystemException;
123
124 public int getOrganizationStatsUsersCount(long organizationId)
125 throws com.liferay.portal.SystemException;
126
127 public com.liferay.portlet.blogs.model.BlogsStatsUser getStatsUser(
128 long groupId, long userId)
129 throws com.liferay.portal.SystemException,
130 com.liferay.portal.PortalException;
131
132 public void updateStatsUser(long groupId, long userId,
133 java.util.Date lastPostDate)
134 throws com.liferay.portal.SystemException,
135 com.liferay.portal.PortalException;
136 }