001
014
015 package com.liferay.portal.service;
016
017
018
027 public class ListTypeServiceWrapper implements ListTypeService {
028 public ListTypeServiceWrapper(ListTypeService listTypeService) {
029 _listTypeService = listTypeService;
030 }
031
032 public com.liferay.portal.model.ListType getListType(int listTypeId)
033 throws com.liferay.portal.kernel.exception.PortalException,
034 com.liferay.portal.kernel.exception.SystemException {
035 return _listTypeService.getListType(listTypeId);
036 }
037
038 public java.util.List<com.liferay.portal.model.ListType> getListTypes(
039 java.lang.String type)
040 throws com.liferay.portal.kernel.exception.SystemException {
041 return _listTypeService.getListTypes(type);
042 }
043
044 public void validate(int listTypeId, java.lang.String type)
045 throws com.liferay.portal.kernel.exception.PortalException,
046 com.liferay.portal.kernel.exception.SystemException {
047 _listTypeService.validate(listTypeId, type);
048 }
049
050 public void validate(int listTypeId, long classNameId, java.lang.String type)
051 throws com.liferay.portal.kernel.exception.PortalException,
052 com.liferay.portal.kernel.exception.SystemException {
053 _listTypeService.validate(listTypeId, classNameId, type);
054 }
055
056 public ListTypeService getWrappedListTypeService() {
057 return _listTypeService;
058 }
059
060 private ListTypeService _listTypeService;
061 }