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 com.liferay.portlet.messageboards.model.MBBan getMBBan(
76 long banId)
77 throws com.liferay.portal.kernel.exception.PortalException,
78 com.liferay.portal.kernel.exception.SystemException {
79 return getService().getMBBan(banId);
80 }
81
82 public static java.util.List<com.liferay.portlet.messageboards.model.MBBan> getMBBans(
83 int start, int end)
84 throws com.liferay.portal.kernel.exception.SystemException {
85 return getService().getMBBans(start, end);
86 }
87
88 public static int getMBBansCount()
89 throws com.liferay.portal.kernel.exception.SystemException {
90 return getService().getMBBansCount();
91 }
92
93 public static com.liferay.portlet.messageboards.model.MBBan updateMBBan(
94 com.liferay.portlet.messageboards.model.MBBan mbBan)
95 throws com.liferay.portal.kernel.exception.SystemException {
96 return getService().updateMBBan(mbBan);
97 }
98
99 public static com.liferay.portlet.messageboards.model.MBBan updateMBBan(
100 com.liferay.portlet.messageboards.model.MBBan mbBan, boolean merge)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return getService().updateMBBan(mbBan, merge);
103 }
104
105 public static com.liferay.portlet.messageboards.model.MBBan addBan(
106 long userId, long banUserId,
107 com.liferay.portal.service.ServiceContext serviceContext)
108 throws com.liferay.portal.kernel.exception.PortalException,
109 com.liferay.portal.kernel.exception.SystemException {
110 return getService().addBan(userId, banUserId, serviceContext);
111 }
112
113 public static void checkBan(long groupId, long banUserId)
114 throws com.liferay.portal.kernel.exception.PortalException,
115 com.liferay.portal.kernel.exception.SystemException {
116 getService().checkBan(groupId, banUserId);
117 }
118
119 public static void deleteBan(long banUserId,
120 com.liferay.portal.service.ServiceContext serviceContext)
121 throws com.liferay.portal.kernel.exception.SystemException {
122 getService().deleteBan(banUserId, serviceContext);
123 }
124
125 public static void deleteBansByBanUserId(long banUserId)
126 throws com.liferay.portal.kernel.exception.SystemException {
127 getService().deleteBansByBanUserId(banUserId);
128 }
129
130 public static void deleteBansByGroupId(long groupId)
131 throws com.liferay.portal.kernel.exception.SystemException {
132 getService().deleteBansByGroupId(groupId);
133 }
134
135 public static void expireBans()
136 throws com.liferay.portal.kernel.exception.SystemException {
137 getService().expireBans();
138 }
139
140 public static java.util.List<com.liferay.portlet.messageboards.model.MBBan> getBans(
141 long groupId, int start, int end)
142 throws com.liferay.portal.kernel.exception.SystemException {
143 return getService().getBans(groupId, start, end);
144 }
145
146 public static int getBansCount(long groupId)
147 throws com.liferay.portal.kernel.exception.SystemException {
148 return getService().getBansCount(groupId);
149 }
150
151 public static boolean hasBan(long groupId, long banUserId)
152 throws com.liferay.portal.kernel.exception.SystemException {
153 return getService().hasBan(groupId, banUserId);
154 }
155
156 public static MBBanLocalService getService() {
157 if (_service == null) {
158 _service = (MBBanLocalService)PortalBeanLocatorUtil.locate(MBBanLocalService.class.getName());
159 }
160
161 return _service;
162 }
163
164 public void setService(MBBanLocalService service) {
165 _service = service;
166 }
167
168 private static MBBanLocalService _service;
169 }