001
014
015 package com.liferay.portal.service;
016
017
026 public class LayoutRevisionLocalServiceWrapper
027 implements LayoutRevisionLocalService,
028 ServiceWrapper<LayoutRevisionLocalService> {
029 public LayoutRevisionLocalServiceWrapper(
030 LayoutRevisionLocalService layoutRevisionLocalService) {
031 _layoutRevisionLocalService = layoutRevisionLocalService;
032 }
033
034
041 public com.liferay.portal.model.LayoutRevision addLayoutRevision(
042 com.liferay.portal.model.LayoutRevision layoutRevision)
043 throws com.liferay.portal.kernel.exception.SystemException {
044 return _layoutRevisionLocalService.addLayoutRevision(layoutRevision);
045 }
046
047
053 public com.liferay.portal.model.LayoutRevision createLayoutRevision(
054 long layoutRevisionId) {
055 return _layoutRevisionLocalService.createLayoutRevision(layoutRevisionId);
056 }
057
058
066 public com.liferay.portal.model.LayoutRevision deleteLayoutRevision(
067 long layoutRevisionId)
068 throws com.liferay.portal.kernel.exception.PortalException,
069 com.liferay.portal.kernel.exception.SystemException {
070 return _layoutRevisionLocalService.deleteLayoutRevision(layoutRevisionId);
071 }
072
073
081 public com.liferay.portal.model.LayoutRevision deleteLayoutRevision(
082 com.liferay.portal.model.LayoutRevision layoutRevision)
083 throws com.liferay.portal.kernel.exception.PortalException,
084 com.liferay.portal.kernel.exception.SystemException {
085 return _layoutRevisionLocalService.deleteLayoutRevision(layoutRevision);
086 }
087
088 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
089 return _layoutRevisionLocalService.dynamicQuery();
090 }
091
092
099 @SuppressWarnings("rawtypes")
100 public java.util.List dynamicQuery(
101 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
102 throws com.liferay.portal.kernel.exception.SystemException {
103 return _layoutRevisionLocalService.dynamicQuery(dynamicQuery);
104 }
105
106
119 @SuppressWarnings("rawtypes")
120 public java.util.List dynamicQuery(
121 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
122 int end) throws com.liferay.portal.kernel.exception.SystemException {
123 return _layoutRevisionLocalService.dynamicQuery(dynamicQuery, start, end);
124 }
125
126
140 @SuppressWarnings("rawtypes")
141 public java.util.List dynamicQuery(
142 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
143 int end,
144 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
145 throws com.liferay.portal.kernel.exception.SystemException {
146 return _layoutRevisionLocalService.dynamicQuery(dynamicQuery, start,
147 end, orderByComparator);
148 }
149
150
157 public long dynamicQueryCount(
158 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
159 throws com.liferay.portal.kernel.exception.SystemException {
160 return _layoutRevisionLocalService.dynamicQueryCount(dynamicQuery);
161 }
162
163 public com.liferay.portal.model.LayoutRevision fetchLayoutRevision(
164 long layoutRevisionId)
165 throws com.liferay.portal.kernel.exception.SystemException {
166 return _layoutRevisionLocalService.fetchLayoutRevision(layoutRevisionId);
167 }
168
169
177 public com.liferay.portal.model.LayoutRevision getLayoutRevision(
178 long layoutRevisionId)
179 throws com.liferay.portal.kernel.exception.PortalException,
180 com.liferay.portal.kernel.exception.SystemException {
181 return _layoutRevisionLocalService.getLayoutRevision(layoutRevisionId);
182 }
183
184 public com.liferay.portal.model.PersistedModel getPersistedModel(
185 java.io.Serializable primaryKeyObj)
186 throws com.liferay.portal.kernel.exception.PortalException,
187 com.liferay.portal.kernel.exception.SystemException {
188 return _layoutRevisionLocalService.getPersistedModel(primaryKeyObj);
189 }
190
191
203 public java.util.List<com.liferay.portal.model.LayoutRevision> getLayoutRevisions(
204 int start, int end)
205 throws com.liferay.portal.kernel.exception.SystemException {
206 return _layoutRevisionLocalService.getLayoutRevisions(start, end);
207 }
208
209
215 public int getLayoutRevisionsCount()
216 throws com.liferay.portal.kernel.exception.SystemException {
217 return _layoutRevisionLocalService.getLayoutRevisionsCount();
218 }
219
220
227 public com.liferay.portal.model.LayoutRevision updateLayoutRevision(
228 com.liferay.portal.model.LayoutRevision layoutRevision)
229 throws com.liferay.portal.kernel.exception.SystemException {
230 return _layoutRevisionLocalService.updateLayoutRevision(layoutRevision);
231 }
232
233
241 public com.liferay.portal.model.LayoutRevision updateLayoutRevision(
242 com.liferay.portal.model.LayoutRevision layoutRevision, boolean merge)
243 throws com.liferay.portal.kernel.exception.SystemException {
244 return _layoutRevisionLocalService.updateLayoutRevision(layoutRevision,
245 merge);
246 }
247
248
253 public java.lang.String getBeanIdentifier() {
254 return _layoutRevisionLocalService.getBeanIdentifier();
255 }
256
257
262 public void setBeanIdentifier(java.lang.String beanIdentifier) {
263 _layoutRevisionLocalService.setBeanIdentifier(beanIdentifier);
264 }
265
266 public com.liferay.portal.model.LayoutRevision addLayoutRevision(
267 long userId, long layoutSetBranchId, long layoutBranchId,
268 long parentLayoutRevisionId, boolean head, long plid,
269 long portletPreferencesPlid, boolean privateLayout,
270 java.lang.String name, java.lang.String title,
271 java.lang.String description, java.lang.String keywords,
272 java.lang.String robots, java.lang.String typeSettings,
273 boolean iconImage, long iconImageId, java.lang.String themeId,
274 java.lang.String colorSchemeId, java.lang.String wapThemeId,
275 java.lang.String wapColorSchemeId, java.lang.String css,
276 com.liferay.portal.service.ServiceContext serviceContext)
277 throws com.liferay.portal.kernel.exception.PortalException,
278 com.liferay.portal.kernel.exception.SystemException {
279 return _layoutRevisionLocalService.addLayoutRevision(userId,
280 layoutSetBranchId, layoutBranchId, parentLayoutRevisionId, head,
281 plid, portletPreferencesPlid, privateLayout, name, title,
282 description, keywords, robots, typeSettings, iconImage,
283 iconImageId, themeId, colorSchemeId, wapThemeId, wapColorSchemeId,
284 css, serviceContext);
285 }
286
287 public void deleteLayoutLayoutRevisions(long plid)
288 throws com.liferay.portal.kernel.exception.PortalException,
289 com.liferay.portal.kernel.exception.SystemException {
290 _layoutRevisionLocalService.deleteLayoutLayoutRevisions(plid);
291 }
292
293 public void deleteLayoutRevisions(long layoutSetBranchId, long plid)
294 throws com.liferay.portal.kernel.exception.PortalException,
295 com.liferay.portal.kernel.exception.SystemException {
296 _layoutRevisionLocalService.deleteLayoutRevisions(layoutSetBranchId,
297 plid);
298 }
299
300 public void deleteLayoutRevisions(long layoutSetBranchId,
301 long layoutBranchId, long plid)
302 throws com.liferay.portal.kernel.exception.PortalException,
303 com.liferay.portal.kernel.exception.SystemException {
304 _layoutRevisionLocalService.deleteLayoutRevisions(layoutSetBranchId,
305 layoutBranchId, plid);
306 }
307
308 public void deleteLayoutSetBranchLayoutRevisions(long layoutSetBranchId)
309 throws com.liferay.portal.kernel.exception.PortalException,
310 com.liferay.portal.kernel.exception.SystemException {
311 _layoutRevisionLocalService.deleteLayoutSetBranchLayoutRevisions(layoutSetBranchId);
312 }
313
314 public com.liferay.portal.model.LayoutRevision fetchLastLayoutRevision(
315 long plid, boolean head)
316 throws com.liferay.portal.kernel.exception.SystemException {
317 return _layoutRevisionLocalService.fetchLastLayoutRevision(plid, head);
318 }
319
320 public java.util.List<com.liferay.portal.model.LayoutRevision> getChildLayoutRevisions(
321 long layoutSetBranchId, long parentLayoutRevisionId, long plid)
322 throws com.liferay.portal.kernel.exception.SystemException {
323 return _layoutRevisionLocalService.getChildLayoutRevisions(layoutSetBranchId,
324 parentLayoutRevisionId, plid);
325 }
326
327 public java.util.List<com.liferay.portal.model.LayoutRevision> getChildLayoutRevisions(
328 long layoutSetBranchId, long parentLayoutRevision, long plid,
329 int start, int end,
330 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
331 throws com.liferay.portal.kernel.exception.SystemException {
332 return _layoutRevisionLocalService.getChildLayoutRevisions(layoutSetBranchId,
333 parentLayoutRevision, plid, start, end, orderByComparator);
334 }
335
336 public int getChildLayoutRevisionsCount(long layoutSetBranchId,
337 long parentLayoutRevision, long plid)
338 throws com.liferay.portal.kernel.exception.SystemException {
339 return _layoutRevisionLocalService.getChildLayoutRevisionsCount(layoutSetBranchId,
340 parentLayoutRevision, plid);
341 }
342
343 public com.liferay.portal.model.LayoutRevision getLayoutRevision(
344 long layoutSetBranchId, long plid, boolean head)
345 throws com.liferay.portal.kernel.exception.PortalException,
346 com.liferay.portal.kernel.exception.SystemException {
347 return _layoutRevisionLocalService.getLayoutRevision(layoutSetBranchId,
348 plid, head);
349 }
350
351 public com.liferay.portal.model.LayoutRevision getLayoutRevision(
352 long layoutSetBranchId, long layoutBranchId, long plid)
353 throws com.liferay.portal.kernel.exception.PortalException,
354 com.liferay.portal.kernel.exception.SystemException {
355 return _layoutRevisionLocalService.getLayoutRevision(layoutSetBranchId,
356 layoutBranchId, plid);
357 }
358
359 public java.util.List<com.liferay.portal.model.LayoutRevision> getLayoutRevisions(
360 long plid) throws com.liferay.portal.kernel.exception.SystemException {
361 return _layoutRevisionLocalService.getLayoutRevisions(plid);
362 }
363
364 public java.util.List<com.liferay.portal.model.LayoutRevision> getLayoutRevisions(
365 long layoutSetBranchId, boolean head)
366 throws com.liferay.portal.kernel.exception.SystemException {
367 return _layoutRevisionLocalService.getLayoutRevisions(layoutSetBranchId,
368 head);
369 }
370
371 public java.util.List<com.liferay.portal.model.LayoutRevision> getLayoutRevisions(
372 long layoutSetBranchId, int status)
373 throws com.liferay.portal.kernel.exception.SystemException {
374 return _layoutRevisionLocalService.getLayoutRevisions(layoutSetBranchId,
375 status);
376 }
377
378 public java.util.List<com.liferay.portal.model.LayoutRevision> getLayoutRevisions(
379 long layoutSetBranchId, long plid)
380 throws com.liferay.portal.kernel.exception.SystemException {
381 return _layoutRevisionLocalService.getLayoutRevisions(layoutSetBranchId,
382 plid);
383 }
384
385 public java.util.List<com.liferay.portal.model.LayoutRevision> getLayoutRevisions(
386 long layoutSetBranchId, long plid, int status)
387 throws com.liferay.portal.kernel.exception.SystemException {
388 return _layoutRevisionLocalService.getLayoutRevisions(layoutSetBranchId,
389 plid, status);
390 }
391
392 public java.util.List<com.liferay.portal.model.LayoutRevision> getLayoutRevisions(
393 long layoutSetBranchId, long layoutBranchId, long plid, int start,
394 int end,
395 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
396 throws com.liferay.portal.kernel.exception.SystemException {
397 return _layoutRevisionLocalService.getLayoutRevisions(layoutSetBranchId,
398 layoutBranchId, plid, start, end, orderByComparator);
399 }
400
401 public int getLayoutRevisionsCount(long layoutSetBranchId,
402 long layoutBranchId, long plid)
403 throws com.liferay.portal.kernel.exception.SystemException {
404 return _layoutRevisionLocalService.getLayoutRevisionsCount(layoutSetBranchId,
405 layoutBranchId, plid);
406 }
407
408 public com.liferay.portal.model.LayoutRevision updateLayoutRevision(
409 long userId, long layoutRevisionId, long layoutBranchId,
410 java.lang.String name, java.lang.String title,
411 java.lang.String description, java.lang.String keywords,
412 java.lang.String robots, java.lang.String typeSettings,
413 boolean iconImage, long iconImageId, java.lang.String themeId,
414 java.lang.String colorSchemeId, java.lang.String wapThemeId,
415 java.lang.String wapColorSchemeId, java.lang.String css,
416 com.liferay.portal.service.ServiceContext serviceContext)
417 throws com.liferay.portal.kernel.exception.PortalException,
418 com.liferay.portal.kernel.exception.SystemException {
419 return _layoutRevisionLocalService.updateLayoutRevision(userId,
420 layoutRevisionId, layoutBranchId, name, title, description,
421 keywords, robots, typeSettings, iconImage, iconImageId, themeId,
422 colorSchemeId, wapThemeId, wapColorSchemeId, css, serviceContext);
423 }
424
425 public com.liferay.portal.model.LayoutRevision updateStatus(long userId,
426 long layoutRevisionId, int status,
427 com.liferay.portal.service.ServiceContext serviceContext)
428 throws com.liferay.portal.kernel.exception.PortalException,
429 com.liferay.portal.kernel.exception.SystemException {
430 return _layoutRevisionLocalService.updateStatus(userId,
431 layoutRevisionId, status, serviceContext);
432 }
433
434
437 public LayoutRevisionLocalService getWrappedLayoutRevisionLocalService() {
438 return _layoutRevisionLocalService;
439 }
440
441
444 public void setWrappedLayoutRevisionLocalService(
445 LayoutRevisionLocalService layoutRevisionLocalService) {
446 _layoutRevisionLocalService = layoutRevisionLocalService;
447 }
448
449 public LayoutRevisionLocalService getWrappedService() {
450 return _layoutRevisionLocalService;
451 }
452
453 public void setWrappedService(
454 LayoutRevisionLocalService layoutRevisionLocalService) {
455 _layoutRevisionLocalService = layoutRevisionLocalService;
456 }
457
458 private LayoutRevisionLocalService _layoutRevisionLocalService;
459 }