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