001
014
015 package com.liferay.portlet.documentlibrary.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class DLFileEntryTypeServiceWrapper implements DLFileEntryTypeService,
029 ServiceWrapper<DLFileEntryTypeService> {
030 public DLFileEntryTypeServiceWrapper(
031 DLFileEntryTypeService dlFileEntryTypeService) {
032 _dlFileEntryTypeService = dlFileEntryTypeService;
033 }
034
035
040 public java.lang.String getBeanIdentifier() {
041 return _dlFileEntryTypeService.getBeanIdentifier();
042 }
043
044
049 public void setBeanIdentifier(java.lang.String beanIdentifier) {
050 _dlFileEntryTypeService.setBeanIdentifier(beanIdentifier);
051 }
052
053 public com.liferay.portlet.documentlibrary.model.DLFileEntryType addFileEntryType(
054 long groupId, java.lang.String name, java.lang.String description,
055 long[] ddmStructureIds,
056 com.liferay.portal.service.ServiceContext serviceContext)
057 throws com.liferay.portal.kernel.exception.PortalException,
058 com.liferay.portal.kernel.exception.SystemException {
059 return _dlFileEntryTypeService.addFileEntryType(groupId, name,
060 description, ddmStructureIds, serviceContext);
061 }
062
063 public void deleteFileEntryType(long fileEntryTypeId)
064 throws com.liferay.portal.kernel.exception.PortalException,
065 com.liferay.portal.kernel.exception.SystemException {
066 _dlFileEntryTypeService.deleteFileEntryType(fileEntryTypeId);
067 }
068
069 public com.liferay.portlet.documentlibrary.model.DLFileEntryType getFileEntryType(
070 long fileEntryTypeId)
071 throws com.liferay.portal.kernel.exception.PortalException,
072 com.liferay.portal.kernel.exception.SystemException {
073 return _dlFileEntryTypeService.getFileEntryType(fileEntryTypeId);
074 }
075
076 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> getFileEntryTypes(
077 long[] groupIds)
078 throws com.liferay.portal.kernel.exception.SystemException {
079 return _dlFileEntryTypeService.getFileEntryTypes(groupIds);
080 }
081
082 public int getFileEntryTypesCount(long[] groupIds)
083 throws com.liferay.portal.kernel.exception.SystemException {
084 return _dlFileEntryTypeService.getFileEntryTypesCount(groupIds);
085 }
086
087 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> getFolderFileEntryTypes(
088 long[] groupIds, long folderId, boolean inherited)
089 throws com.liferay.portal.kernel.exception.PortalException,
090 com.liferay.portal.kernel.exception.SystemException {
091 return _dlFileEntryTypeService.getFolderFileEntryTypes(groupIds,
092 folderId, inherited);
093 }
094
095 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> search(
096 long companyId, long[] groupIds, java.lang.String keywords,
097 boolean includeBasicFileEntryType, int start, int end,
098 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
099 throws com.liferay.portal.kernel.exception.SystemException {
100 return _dlFileEntryTypeService.search(companyId, groupIds, keywords,
101 includeBasicFileEntryType, start, end, orderByComparator);
102 }
103
104 public int searchCount(long companyId, long[] groupIds,
105 java.lang.String keywords, boolean includeBasicFileEntryType)
106 throws com.liferay.portal.kernel.exception.SystemException {
107 return _dlFileEntryTypeService.searchCount(companyId, groupIds,
108 keywords, includeBasicFileEntryType);
109 }
110
111 public void updateFileEntryType(long fileEntryTypeId,
112 java.lang.String name, java.lang.String description,
113 long[] ddmStructureIds,
114 com.liferay.portal.service.ServiceContext serviceContext)
115 throws com.liferay.portal.kernel.exception.PortalException,
116 com.liferay.portal.kernel.exception.SystemException {
117 _dlFileEntryTypeService.updateFileEntryType(fileEntryTypeId, name,
118 description, ddmStructureIds, serviceContext);
119 }
120
121
124 public DLFileEntryTypeService getWrappedDLFileEntryTypeService() {
125 return _dlFileEntryTypeService;
126 }
127
128
131 public void setWrappedDLFileEntryTypeService(
132 DLFileEntryTypeService dlFileEntryTypeService) {
133 _dlFileEntryTypeService = dlFileEntryTypeService;
134 }
135
136 public DLFileEntryTypeService getWrappedService() {
137 return _dlFileEntryTypeService;
138 }
139
140 public void setWrappedService(DLFileEntryTypeService dlFileEntryTypeService) {
141 _dlFileEntryTypeService = dlFileEntryTypeService;
142 }
143
144 private DLFileEntryTypeService _dlFileEntryTypeService;
145 }