1
22
23 package com.liferay.portlet.messageboards.service;
24
25
26
50 public interface MBStatsUserLocalService {
51 public com.liferay.portlet.messageboards.model.MBStatsUser addMBStatsUser(
52 com.liferay.portlet.messageboards.model.MBStatsUser mbStatsUser)
53 throws com.liferay.portal.SystemException;
54
55 public void deleteMBStatsUser(long statsUserId)
56 throws com.liferay.portal.SystemException,
57 com.liferay.portal.PortalException;
58
59 public void deleteMBStatsUser(
60 com.liferay.portlet.messageboards.model.MBStatsUser mbStatsUser)
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.messageboards.model.MBStatsUser getMBStatsUser(
72 long statsUserId)
73 throws com.liferay.portal.SystemException,
74 com.liferay.portal.PortalException;
75
76 public java.util.List<com.liferay.portlet.messageboards.model.MBStatsUser> getMBStatsUsers(
77 int start, int end) throws com.liferay.portal.SystemException;
78
79 public int getMBStatsUsersCount() throws com.liferay.portal.SystemException;
80
81 public com.liferay.portlet.messageboards.model.MBStatsUser updateMBStatsUser(
82 com.liferay.portlet.messageboards.model.MBStatsUser mbStatsUser)
83 throws com.liferay.portal.SystemException;
84
85 public void deleteStatsUserByGroupId(long groupId)
86 throws com.liferay.portal.SystemException;
87
88 public void deleteStatsUserByUserId(long userId)
89 throws com.liferay.portal.SystemException;
90
91 public com.liferay.portlet.messageboards.model.MBStatsUser getStatsUser(
92 long groupId, long userId) throws com.liferay.portal.SystemException;
93
94 public java.util.List<com.liferay.portlet.messageboards.model.MBStatsUser> getStatsUsers(
95 long groupId, int start, int end)
96 throws com.liferay.portal.SystemException;
97
98 public int getStatsUsersCount(long groupId)
99 throws com.liferay.portal.SystemException;
100
101 public void updateStatsUser(long groupId, long userId)
102 throws com.liferay.portal.SystemException;
103 }