001
014
015 package com.liferay.portal.service;
016
017
026 public class ListTypeServiceWrapper implements ListTypeService,
027 ServiceWrapper<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, long classNameId, java.lang.String type)
045 throws com.liferay.portal.kernel.exception.PortalException,
046 com.liferay.portal.kernel.exception.SystemException {
047 _listTypeService.validate(listTypeId, classNameId, type);
048 }
049
050 public void validate(int listTypeId, java.lang.String type)
051 throws com.liferay.portal.kernel.exception.PortalException,
052 com.liferay.portal.kernel.exception.SystemException {
053 _listTypeService.validate(listTypeId, type);
054 }
055
056
059 public ListTypeService getWrappedListTypeService() {
060 return _listTypeService;
061 }
062
063
066 public void setWrappedListTypeService(ListTypeService listTypeService) {
067 _listTypeService = listTypeService;
068 }
069
070 public ListTypeService getWrappedService() {
071 return _listTypeService;
072 }
073
074 public void setWrappedService(ListTypeService listTypeService) {
075 _listTypeService = listTypeService;
076 }
077
078 private ListTypeService _listTypeService;
079 }