1
14
15 package com.liferay.portal.service;
16
17
18
34 public class ListTypeServiceWrapper implements ListTypeService {
35 public ListTypeServiceWrapper(ListTypeService listTypeService) {
36 _listTypeService = listTypeService;
37 }
38
39 public com.liferay.portal.model.ListType getListType(int listTypeId)
40 throws com.liferay.portal.kernel.exception.PortalException,
41 com.liferay.portal.kernel.exception.SystemException {
42 return _listTypeService.getListType(listTypeId);
43 }
44
45 public java.util.List<com.liferay.portal.model.ListType> getListTypes(
46 java.lang.String type)
47 throws com.liferay.portal.kernel.exception.SystemException {
48 return _listTypeService.getListTypes(type);
49 }
50
51 public void validate(int listTypeId, java.lang.String type)
52 throws com.liferay.portal.kernel.exception.PortalException,
53 com.liferay.portal.kernel.exception.SystemException {
54 _listTypeService.validate(listTypeId, type);
55 }
56
57 public void validate(int listTypeId, long classNameId, java.lang.String type)
58 throws com.liferay.portal.kernel.exception.PortalException,
59 com.liferay.portal.kernel.exception.SystemException {
60 _listTypeService.validate(listTypeId, classNameId, type);
61 }
62
63 public ListTypeService getWrappedListTypeService() {
64 return _listTypeService;
65 }
66
67 private ListTypeService _listTypeService;
68 }