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