1
14
15 package com.liferay.portlet.messageboards.service;
16
17 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18
19
39 public class MBBanLocalServiceUtil {
40 public static com.liferay.portlet.messageboards.model.MBBan addMBBan(
41 com.liferay.portlet.messageboards.model.MBBan mbBan)
42 throws com.liferay.portal.kernel.exception.SystemException {
43 return getService().addMBBan(mbBan);
44 }
45
46 public static com.liferay.portlet.messageboards.model.MBBan createMBBan(
47 long banId) {
48 return getService().createMBBan(banId);
49 }
50
51 public static void deleteMBBan(long banId)
52 throws com.liferay.portal.kernel.exception.PortalException,
53 com.liferay.portal.kernel.exception.SystemException {
54 getService().deleteMBBan(banId);
55 }
56
57 public static void deleteMBBan(
58 com.liferay.portlet.messageboards.model.MBBan mbBan)
59 throws com.liferay.portal.kernel.exception.SystemException {
60 getService().deleteMBBan(mbBan);
61 }
62
63 public static java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.kernel.exception.SystemException {
66 return getService().dynamicQuery(dynamicQuery);
67 }
68
69 public static java.util.List<Object> dynamicQuery(
70 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71 int end) throws com.liferay.portal.kernel.exception.SystemException {
72 return getService().dynamicQuery(dynamicQuery, start, end);
73 }
74
75 public static java.util.List<Object> dynamicQuery(
76 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
77 int end,
78 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
79 throws com.liferay.portal.kernel.exception.SystemException {
80 return getService()
81 .dynamicQuery(dynamicQuery, start, end, orderByComparator);
82 }
83
84 public static int dynamicQueryCount(
85 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
86 throws com.liferay.portal.kernel.exception.SystemException {
87 return getService().dynamicQueryCount(dynamicQuery);
88 }
89
90 public static com.liferay.portlet.messageboards.model.MBBan getMBBan(
91 long banId)
92 throws com.liferay.portal.kernel.exception.PortalException,
93 com.liferay.portal.kernel.exception.SystemException {
94 return getService().getMBBan(banId);
95 }
96
97 public static java.util.List<com.liferay.portlet.messageboards.model.MBBan> getMBBans(
98 int start, int end)
99 throws com.liferay.portal.kernel.exception.SystemException {
100 return getService().getMBBans(start, end);
101 }
102
103 public static int getMBBansCount()
104 throws com.liferay.portal.kernel.exception.SystemException {
105 return getService().getMBBansCount();
106 }
107
108 public static com.liferay.portlet.messageboards.model.MBBan updateMBBan(
109 com.liferay.portlet.messageboards.model.MBBan mbBan)
110 throws com.liferay.portal.kernel.exception.SystemException {
111 return getService().updateMBBan(mbBan);
112 }
113
114 public static com.liferay.portlet.messageboards.model.MBBan updateMBBan(
115 com.liferay.portlet.messageboards.model.MBBan mbBan, boolean merge)
116 throws com.liferay.portal.kernel.exception.SystemException {
117 return getService().updateMBBan(mbBan, merge);
118 }
119
120 public static com.liferay.portlet.messageboards.model.MBBan addBan(
121 long userId, long banUserId,
122 com.liferay.portal.service.ServiceContext serviceContext)
123 throws com.liferay.portal.kernel.exception.PortalException,
124 com.liferay.portal.kernel.exception.SystemException {
125 return getService().addBan(userId, banUserId, serviceContext);
126 }
127
128 public static void checkBan(long groupId, long banUserId)
129 throws com.liferay.portal.kernel.exception.PortalException,
130 com.liferay.portal.kernel.exception.SystemException {
131 getService().checkBan(groupId, banUserId);
132 }
133
134 public static void deleteBan(long banUserId,
135 com.liferay.portal.service.ServiceContext serviceContext)
136 throws com.liferay.portal.kernel.exception.SystemException {
137 getService().deleteBan(banUserId, serviceContext);
138 }
139
140 public static void deleteBansByBanUserId(long banUserId)
141 throws com.liferay.portal.kernel.exception.SystemException {
142 getService().deleteBansByBanUserId(banUserId);
143 }
144
145 public static void deleteBansByGroupId(long groupId)
146 throws com.liferay.portal.kernel.exception.SystemException {
147 getService().deleteBansByGroupId(groupId);
148 }
149
150 public static void expireBans()
151 throws com.liferay.portal.kernel.exception.SystemException {
152 getService().expireBans();
153 }
154
155 public static java.util.List<com.liferay.portlet.messageboards.model.MBBan> getBans(
156 long groupId, int start, int end)
157 throws com.liferay.portal.kernel.exception.SystemException {
158 return getService().getBans(groupId, start, end);
159 }
160
161 public static int getBansCount(long groupId)
162 throws com.liferay.portal.kernel.exception.SystemException {
163 return getService().getBansCount(groupId);
164 }
165
166 public static boolean hasBan(long groupId, long banUserId)
167 throws com.liferay.portal.kernel.exception.SystemException {
168 return getService().hasBan(groupId, banUserId);
169 }
170
171 public static MBBanLocalService getService() {
172 if (_service == null) {
173 _service = (MBBanLocalService)PortalBeanLocatorUtil.locate(MBBanLocalService.class.getName());
174 }
175
176 return _service;
177 }
178
179 public void setService(MBBanLocalService service) {
180 _service = service;
181 }
182
183 private static MBBanLocalService _service;
184 }