1
22
23 package com.liferay.portlet.messageboards.service;
24
25 import com.liferay.portal.PortalException;
26 import com.liferay.portal.SystemException;
27 import com.liferay.portal.kernel.annotation.Propagation;
28 import com.liferay.portal.kernel.annotation.Transactional;
29
30
54 @Transactional(rollbackFor = {
55 PortalException.class, SystemException.class})
56 public interface MBThreadLocalService {
57 public com.liferay.portlet.messageboards.model.MBThread addMBThread(
58 com.liferay.portlet.messageboards.model.MBThread mbThread)
59 throws com.liferay.portal.SystemException;
60
61 public com.liferay.portlet.messageboards.model.MBThread createMBThread(
62 long threadId);
63
64 public void deleteMBThread(long threadId)
65 throws com.liferay.portal.SystemException,
66 com.liferay.portal.PortalException;
67
68 public void deleteMBThread(
69 com.liferay.portlet.messageboards.model.MBThread mbThread)
70 throws com.liferay.portal.SystemException;
71
72 public java.util.List<Object> dynamicQuery(
73 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
74 throws com.liferay.portal.SystemException;
75
76 public java.util.List<Object> dynamicQuery(
77 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
78 int end) throws com.liferay.portal.SystemException;
79
80 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
81 public com.liferay.portlet.messageboards.model.MBThread getMBThread(
82 long threadId)
83 throws com.liferay.portal.SystemException,
84 com.liferay.portal.PortalException;
85
86 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
87 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getMBThreads(
88 int start, int end) throws com.liferay.portal.SystemException;
89
90 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
91 public int getMBThreadsCount() throws com.liferay.portal.SystemException;
92
93 public com.liferay.portlet.messageboards.model.MBThread updateMBThread(
94 com.liferay.portlet.messageboards.model.MBThread mbThread)
95 throws com.liferay.portal.SystemException;
96
97 public void deleteThread(long threadId)
98 throws com.liferay.portal.PortalException,
99 com.liferay.portal.SystemException;
100
101 public void deleteThread(
102 com.liferay.portlet.messageboards.model.MBThread thread)
103 throws com.liferay.portal.PortalException,
104 com.liferay.portal.SystemException;
105
106 public void deleteThreads(long categoryId)
107 throws com.liferay.portal.PortalException,
108 com.liferay.portal.SystemException;
109
110 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
111 public int getCategoriesThreadsCount(java.util.List<Long> categoryIds)
112 throws com.liferay.portal.SystemException;
113
114 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
115 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getGroupThreads(
116 long groupId, int start, int end)
117 throws com.liferay.portal.SystemException;
118
119 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
120 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getGroupThreads(
121 long groupId, long userId, int start, int end)
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, long userId, boolean subscribed, int start, int end)
127 throws com.liferay.portal.SystemException;
128
129 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
130 public int getGroupThreadsCount(long groupId)
131 throws com.liferay.portal.SystemException;
132
133 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
134 public int getGroupThreadsCount(long groupId, long userId)
135 throws com.liferay.portal.SystemException;
136
137 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
138 public int getGroupThreadsCount(long groupId, long userId,
139 boolean subscribed) throws com.liferay.portal.SystemException;
140
141 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
142 public com.liferay.portlet.messageboards.model.MBThread getThread(
143 long threadId)
144 throws com.liferay.portal.PortalException,
145 com.liferay.portal.SystemException;
146
147 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
148 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getThreads(
149 long categoryId, int start, int end)
150 throws com.liferay.portal.SystemException;
151
152 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
153 public int getThreadsCount(long categoryId)
154 throws com.liferay.portal.SystemException;
155
156 public boolean hasReadThread(long userId, long threadId)
157 throws com.liferay.portal.PortalException,
158 com.liferay.portal.SystemException;
159
160 public com.liferay.portlet.messageboards.model.MBThread moveThread(
161 long categoryId, long threadId)
162 throws com.liferay.portal.PortalException,
163 com.liferay.portal.SystemException;
164
165 public com.liferay.portlet.messageboards.model.MBThread splitThread(
166 long messageId, javax.portlet.PortletPreferences prefs,
167 com.liferay.portal.theme.ThemeDisplay themeDisplay)
168 throws com.liferay.portal.PortalException,
169 com.liferay.portal.SystemException;
170
171 public com.liferay.portlet.messageboards.model.MBThread updateThread(
172 long threadId, int viewCount)
173 throws com.liferay.portal.PortalException,
174 com.liferay.portal.SystemException;
175 }