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 void deleteBlogsStatsUser(long statsUserId)
56 throws com.liferay.portal.SystemException,
57 com.liferay.portal.PortalException;
58
59 public void deleteBlogsStatsUser(
60 com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
61 throws com.liferay.portal.SystemException;
62
63 public java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException;
66
67 public java.util.List<Object> dynamicQuery(
68 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
69 int end) throws com.liferay.portal.SystemException;
70
71 public com.liferay.portlet.blogs.model.BlogsStatsUser getBlogsStatsUser(
72 long statsUserId)
73 throws com.liferay.portal.SystemException,
74 com.liferay.portal.PortalException;
75
76 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getBlogsStatsUsers(
77 int start, int end) throws com.liferay.portal.SystemException;
78
79 public int getBlogsStatsUsersCount()
80 throws com.liferay.portal.SystemException;
81
82 public com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
83 com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
84 throws com.liferay.portal.SystemException;
85
86 public void deleteStatsUserByGroupId(long groupId)
87 throws com.liferay.portal.SystemException;
88
89 public void deleteStatsUserByUserId(long userId)
90 throws com.liferay.portal.SystemException;
91
92 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
93 long companyId, int start, int end,
94 com.liferay.portal.kernel.util.OrderByComparator obc)
95 throws com.liferay.portal.SystemException;
96
97 public int getCompanyStatsUsersCount(long companyId)
98 throws com.liferay.portal.SystemException;
99
100 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
101 long groupId, int start, int end,
102 com.liferay.portal.kernel.util.OrderByComparator obc)
103 throws com.liferay.portal.SystemException;
104
105 public int getGroupStatsUsersCount(long groupId)
106 throws com.liferay.portal.SystemException;
107
108 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
109 long organizationId, int start, int end,
110 com.liferay.portal.kernel.util.OrderByComparator obc)
111 throws com.liferay.portal.SystemException;
112
113 public int getOrganizationStatsUsersCount(long organizationId)
114 throws com.liferay.portal.SystemException;
115
116 public com.liferay.portlet.blogs.model.BlogsStatsUser getStatsUser(
117 long groupId, long userId)
118 throws com.liferay.portal.PortalException,
119 com.liferay.portal.SystemException;
120
121 public void updateStatsUser(long groupId, long userId)
122 throws com.liferay.portal.PortalException,
123 com.liferay.portal.SystemException;
124
125 public void updateStatsUser(long groupId, long userId,
126 java.util.Date displayDate)
127 throws com.liferay.portal.PortalException,
128 com.liferay.portal.SystemException;
129 }