1
22
23 package com.liferay.portlet.blogs.service;
24
25
26
50 public interface BlogsStatsUserLocalService {
51 public com.liferay.portlet.blogs.model.BlogsStatsUser addBlogsStatsUser(
52 com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
53 throws com.liferay.portal.SystemException;
54
55 public com.liferay.portlet.blogs.model.BlogsStatsUser createBlogsStatsUser(
56 long statsUserId);
57
58 public void deleteBlogsStatsUser(long statsUserId)
59 throws com.liferay.portal.SystemException,
60 com.liferay.portal.PortalException;
61
62 public void deleteBlogsStatsUser(
63 com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
64 throws com.liferay.portal.SystemException;
65
66 public java.util.List<Object> dynamicQuery(
67 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
68 throws com.liferay.portal.SystemException;
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.SystemException;
73
74 public com.liferay.portlet.blogs.model.BlogsStatsUser getBlogsStatsUser(
75 long statsUserId)
76 throws com.liferay.portal.SystemException,
77 com.liferay.portal.PortalException;
78
79 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getBlogsStatsUsers(
80 int start, int end) throws com.liferay.portal.SystemException;
81
82 public int getBlogsStatsUsersCount()
83 throws com.liferay.portal.SystemException;
84
85 public com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
86 com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
87 throws com.liferay.portal.SystemException;
88
89 public void deleteStatsUserByGroupId(long groupId)
90 throws com.liferay.portal.SystemException;
91
92 public void deleteStatsUserByUserId(long userId)
93 throws com.liferay.portal.SystemException;
94
95 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
96 long companyId, int start, int end)
97 throws com.liferay.portal.SystemException;
98
99 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
100 long companyId, int start, int end,
101 com.liferay.portal.kernel.util.OrderByComparator obc)
102 throws com.liferay.portal.SystemException;
103
104 public int getCompanyStatsUsersCount(long companyId)
105 throws com.liferay.portal.SystemException;
106
107 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
108 long groupId, int start, int end)
109 throws com.liferay.portal.SystemException;
110
111 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
112 long groupId, int start, int end,
113 com.liferay.portal.kernel.util.OrderByComparator obc)
114 throws com.liferay.portal.SystemException;
115
116 public int getGroupStatsUsersCount(long groupId)
117 throws com.liferay.portal.SystemException;
118
119 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
120 long organizationId, int start, int end)
121 throws com.liferay.portal.SystemException;
122
123 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
124 long organizationId, int start, int end,
125 com.liferay.portal.kernel.util.OrderByComparator obc)
126 throws com.liferay.portal.SystemException;
127
128 public int getOrganizationStatsUsersCount(long organizationId)
129 throws com.liferay.portal.SystemException;
130
131 public com.liferay.portlet.blogs.model.BlogsStatsUser getStatsUser(
132 long groupId, long userId)
133 throws com.liferay.portal.PortalException,
134 com.liferay.portal.SystemException;
135
136 public void updateStatsUser(long groupId, long userId)
137 throws com.liferay.portal.PortalException,
138 com.liferay.portal.SystemException;
139
140 public void updateStatsUser(long groupId, long userId,
141 java.util.Date displayDate)
142 throws com.liferay.portal.PortalException,
143 com.liferay.portal.SystemException;
144 }