001
014
015 package com.liferay.portal.service;
016
017
026 public class WebsiteLocalServiceWrapper implements WebsiteLocalService,
027 ServiceWrapper<WebsiteLocalService> {
028 public WebsiteLocalServiceWrapper(WebsiteLocalService websiteLocalService) {
029 _websiteLocalService = websiteLocalService;
030 }
031
032
039 public com.liferay.portal.model.Website addWebsite(
040 com.liferay.portal.model.Website website)
041 throws com.liferay.portal.kernel.exception.SystemException {
042 return _websiteLocalService.addWebsite(website);
043 }
044
045
051 public com.liferay.portal.model.Website createWebsite(long websiteId) {
052 return _websiteLocalService.createWebsite(websiteId);
053 }
054
055
063 public com.liferay.portal.model.Website deleteWebsite(long websiteId)
064 throws com.liferay.portal.kernel.exception.PortalException,
065 com.liferay.portal.kernel.exception.SystemException {
066 return _websiteLocalService.deleteWebsite(websiteId);
067 }
068
069
076 public com.liferay.portal.model.Website deleteWebsite(
077 com.liferay.portal.model.Website website)
078 throws com.liferay.portal.kernel.exception.SystemException {
079 return _websiteLocalService.deleteWebsite(website);
080 }
081
082 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
083 return _websiteLocalService.dynamicQuery();
084 }
085
086
093 @SuppressWarnings("rawtypes")
094 public java.util.List dynamicQuery(
095 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
096 throws com.liferay.portal.kernel.exception.SystemException {
097 return _websiteLocalService.dynamicQuery(dynamicQuery);
098 }
099
100
113 @SuppressWarnings("rawtypes")
114 public java.util.List dynamicQuery(
115 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
116 int end) throws com.liferay.portal.kernel.exception.SystemException {
117 return _websiteLocalService.dynamicQuery(dynamicQuery, start, end);
118 }
119
120
134 @SuppressWarnings("rawtypes")
135 public java.util.List dynamicQuery(
136 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
137 int end,
138 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
139 throws com.liferay.portal.kernel.exception.SystemException {
140 return _websiteLocalService.dynamicQuery(dynamicQuery, start, end,
141 orderByComparator);
142 }
143
144
151 public long dynamicQueryCount(
152 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
153 throws com.liferay.portal.kernel.exception.SystemException {
154 return _websiteLocalService.dynamicQueryCount(dynamicQuery);
155 }
156
157 public com.liferay.portal.model.Website fetchWebsite(long websiteId)
158 throws com.liferay.portal.kernel.exception.SystemException {
159 return _websiteLocalService.fetchWebsite(websiteId);
160 }
161
162
170 public com.liferay.portal.model.Website getWebsite(long websiteId)
171 throws com.liferay.portal.kernel.exception.PortalException,
172 com.liferay.portal.kernel.exception.SystemException {
173 return _websiteLocalService.getWebsite(websiteId);
174 }
175
176 public com.liferay.portal.model.PersistedModel getPersistedModel(
177 java.io.Serializable primaryKeyObj)
178 throws com.liferay.portal.kernel.exception.PortalException,
179 com.liferay.portal.kernel.exception.SystemException {
180 return _websiteLocalService.getPersistedModel(primaryKeyObj);
181 }
182
183
195 public java.util.List<com.liferay.portal.model.Website> getWebsites(
196 int start, int end)
197 throws com.liferay.portal.kernel.exception.SystemException {
198 return _websiteLocalService.getWebsites(start, end);
199 }
200
201
207 public int getWebsitesCount()
208 throws com.liferay.portal.kernel.exception.SystemException {
209 return _websiteLocalService.getWebsitesCount();
210 }
211
212
219 public com.liferay.portal.model.Website updateWebsite(
220 com.liferay.portal.model.Website website)
221 throws com.liferay.portal.kernel.exception.SystemException {
222 return _websiteLocalService.updateWebsite(website);
223 }
224
225
233 public com.liferay.portal.model.Website updateWebsite(
234 com.liferay.portal.model.Website website, boolean merge)
235 throws com.liferay.portal.kernel.exception.SystemException {
236 return _websiteLocalService.updateWebsite(website, merge);
237 }
238
239
244 public java.lang.String getBeanIdentifier() {
245 return _websiteLocalService.getBeanIdentifier();
246 }
247
248
253 public void setBeanIdentifier(java.lang.String beanIdentifier) {
254 _websiteLocalService.setBeanIdentifier(beanIdentifier);
255 }
256
257 public com.liferay.portal.model.Website addWebsite(long userId,
258 java.lang.String className, long classPK, java.lang.String url,
259 int typeId, boolean primary)
260 throws com.liferay.portal.kernel.exception.PortalException,
261 com.liferay.portal.kernel.exception.SystemException {
262 return _websiteLocalService.addWebsite(userId, className, classPK, url,
263 typeId, primary);
264 }
265
266 public void deleteWebsites(long companyId, java.lang.String className,
267 long classPK)
268 throws com.liferay.portal.kernel.exception.SystemException {
269 _websiteLocalService.deleteWebsites(companyId, className, classPK);
270 }
271
272 public java.util.List<com.liferay.portal.model.Website> getWebsites()
273 throws com.liferay.portal.kernel.exception.SystemException {
274 return _websiteLocalService.getWebsites();
275 }
276
277 public java.util.List<com.liferay.portal.model.Website> getWebsites(
278 long companyId, java.lang.String className, long classPK)
279 throws com.liferay.portal.kernel.exception.SystemException {
280 return _websiteLocalService.getWebsites(companyId, className, classPK);
281 }
282
283 public com.liferay.portal.model.Website updateWebsite(long websiteId,
284 java.lang.String url, int typeId, boolean primary)
285 throws com.liferay.portal.kernel.exception.PortalException,
286 com.liferay.portal.kernel.exception.SystemException {
287 return _websiteLocalService.updateWebsite(websiteId, url, typeId,
288 primary);
289 }
290
291
294 public WebsiteLocalService getWrappedWebsiteLocalService() {
295 return _websiteLocalService;
296 }
297
298
301 public void setWrappedWebsiteLocalService(
302 WebsiteLocalService websiteLocalService) {
303 _websiteLocalService = websiteLocalService;
304 }
305
306 public WebsiteLocalService getWrappedService() {
307 return _websiteLocalService;
308 }
309
310 public void setWrappedService(WebsiteLocalService websiteLocalService) {
311 _websiteLocalService = websiteLocalService;
312 }
313
314 private WebsiteLocalService _websiteLocalService;
315 }