1
14
15 package com.liferay.portlet.messageboards.service;
16
17 import com.liferay.portal.PortalException;
18 import com.liferay.portal.SystemException;
19 import com.liferay.portal.kernel.annotation.Isolation;
20 import com.liferay.portal.kernel.annotation.Propagation;
21 import com.liferay.portal.kernel.annotation.Transactional;
22
23
47 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
48 PortalException.class, SystemException.class})
49 public interface MBThreadLocalService {
50 public com.liferay.portlet.messageboards.model.MBThread addMBThread(
51 com.liferay.portlet.messageboards.model.MBThread mbThread)
52 throws com.liferay.portal.SystemException;
53
54 public com.liferay.portlet.messageboards.model.MBThread createMBThread(
55 long threadId);
56
57 public void deleteMBThread(long threadId)
58 throws com.liferay.portal.PortalException,
59 com.liferay.portal.SystemException;
60
61 public void deleteMBThread(
62 com.liferay.portlet.messageboards.model.MBThread mbThread)
63 throws com.liferay.portal.SystemException;
64
65 @SuppressWarnings("rawtypes")
66 public java.util.List dynamicQuery(
67 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
68 throws com.liferay.portal.SystemException;
69
70 @SuppressWarnings("rawtypes")
71 public java.util.List dynamicQuery(
72 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
73 int end) throws com.liferay.portal.SystemException;
74
75 @SuppressWarnings("rawtypes")
76 public java.util.List dynamicQuery(
77 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
78 int end,
79 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
80 throws com.liferay.portal.SystemException;
81
82 public int dynamicQueryCount(
83 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
84 throws com.liferay.portal.SystemException;
85
86 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
87 public com.liferay.portlet.messageboards.model.MBThread getMBThread(
88 long threadId)
89 throws com.liferay.portal.PortalException,
90 com.liferay.portal.SystemException;
91
92 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
93 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getMBThreads(
94 int start, int end) throws com.liferay.portal.SystemException;
95
96 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
97 public int getMBThreadsCount() throws com.liferay.portal.SystemException;
98
99 public com.liferay.portlet.messageboards.model.MBThread updateMBThread(
100 com.liferay.portlet.messageboards.model.MBThread mbThread)
101 throws com.liferay.portal.SystemException;
102
103 public com.liferay.portlet.messageboards.model.MBThread updateMBThread(
104 com.liferay.portlet.messageboards.model.MBThread mbThread, boolean merge)
105 throws com.liferay.portal.SystemException;
106
107 public void deleteThread(long threadId)
108 throws com.liferay.portal.PortalException,
109 com.liferay.portal.SystemException;
110
111 public void deleteThread(
112 com.liferay.portlet.messageboards.model.MBThread thread)
113 throws com.liferay.portal.PortalException,
114 com.liferay.portal.SystemException;
115
116 public void deleteThreads(long categoryId)
117 throws com.liferay.portal.PortalException,
118 com.liferay.portal.SystemException;
119
120 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
121 public int getCategoryThreadsCount(long categoryId)
122 throws com.liferay.portal.SystemException;
123
124 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
125 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getGroupThreads(
126 long groupId, int start, int end)
127 throws com.liferay.portal.SystemException;
128
129 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
130 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getGroupThreads(
131 long groupId, long userId, boolean subscribed,
132 boolean includeAnonymous, int start, int end)
133 throws com.liferay.portal.PortalException,
134 com.liferay.portal.SystemException;
135
136 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
137 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getGroupThreads(
138 long groupId, long userId, boolean subscribed, int start, int end)
139 throws com.liferay.portal.PortalException,
140 com.liferay.portal.SystemException;
141
142 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
143 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getGroupThreads(
144 long groupId, long userId, int start, int end)
145 throws com.liferay.portal.PortalException,
146 com.liferay.portal.SystemException;
147
148 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
149 public int getGroupThreadsCount(long groupId)
150 throws com.liferay.portal.SystemException;
151
152 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
153 public int getGroupThreadsCount(long groupId, long userId)
154 throws com.liferay.portal.SystemException;
155
156 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
157 public int getGroupThreadsCount(long groupId, long userId,
158 boolean subscribed) throws com.liferay.portal.SystemException;
159
160 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
161 public int getGroupThreadsCount(long groupId, long userId,
162 boolean subscribed, boolean includeAnonymous)
163 throws com.liferay.portal.SystemException;
164
165 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
166 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getPriorityThreads(
167 long categoryId, double priority)
168 throws com.liferay.portal.PortalException,
169 com.liferay.portal.SystemException;
170
171 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
172 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getPriorityThreads(
173 long categoryId, double priority, boolean inherit)
174 throws com.liferay.portal.PortalException,
175 com.liferay.portal.SystemException;
176
177 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
178 public com.liferay.portlet.messageboards.model.MBThread getThread(
179 long threadId)
180 throws com.liferay.portal.PortalException,
181 com.liferay.portal.SystemException;
182
183 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
184 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getThreads(
185 long categoryId, int start, int end)
186 throws com.liferay.portal.SystemException;
187
188 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
189 public int getThreadsCount(long categoryId)
190 throws com.liferay.portal.SystemException;
191
192 public com.liferay.portlet.messageboards.model.MBThread moveThread(
193 long categoryId, long threadId)
194 throws com.liferay.portal.PortalException,
195 com.liferay.portal.SystemException;
196
197 public com.liferay.portlet.messageboards.model.MBThread splitThread(
198 long messageId, com.liferay.portal.service.ServiceContext serviceContext)
199 throws com.liferay.portal.PortalException,
200 com.liferay.portal.SystemException;
201
202 public com.liferay.portlet.messageboards.model.MBThread updateThread(
203 long threadId, int viewCount)
204 throws com.liferay.portal.PortalException,
205 com.liferay.portal.SystemException;
206 }