001
014
015 package com.liferay.portlet.asset.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
026 public class AssetEntryServiceWrapper implements AssetEntryService,
027 ServiceWrapper<AssetEntryService> {
028 public AssetEntryServiceWrapper(AssetEntryService assetEntryService) {
029 _assetEntryService = assetEntryService;
030 }
031
032
037 @Override
038 public java.lang.String getBeanIdentifier() {
039 return _assetEntryService.getBeanIdentifier();
040 }
041
042
047 @Override
048 public void setBeanIdentifier(java.lang.String beanIdentifier) {
049 _assetEntryService.setBeanIdentifier(beanIdentifier);
050 }
051
052 @Override
053 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getCompanyEntries(
054 long companyId, int start, int end)
055 throws com.liferay.portal.kernel.exception.SystemException {
056 return _assetEntryService.getCompanyEntries(companyId, start, end);
057 }
058
059 @Override
060 public int getCompanyEntriesCount(long companyId)
061 throws com.liferay.portal.kernel.exception.SystemException {
062 return _assetEntryService.getCompanyEntriesCount(companyId);
063 }
064
065 @Override
066 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getEntries(
067 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
068 throws com.liferay.portal.kernel.exception.PortalException,
069 com.liferay.portal.kernel.exception.SystemException {
070 return _assetEntryService.getEntries(entryQuery);
071 }
072
073 @Override
074 public int getEntriesCount(
075 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
076 throws com.liferay.portal.kernel.exception.PortalException,
077 com.liferay.portal.kernel.exception.SystemException {
078 return _assetEntryService.getEntriesCount(entryQuery);
079 }
080
081 @Override
082 public com.liferay.portlet.asset.model.AssetEntry getEntry(long entryId)
083 throws com.liferay.portal.kernel.exception.PortalException,
084 com.liferay.portal.kernel.exception.SystemException {
085 return _assetEntryService.getEntry(entryId);
086 }
087
088 @Override
089 public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
090 java.lang.String className, long classPK)
091 throws com.liferay.portal.kernel.exception.PortalException,
092 com.liferay.portal.kernel.exception.SystemException {
093 return _assetEntryService.incrementViewCounter(className, classPK);
094 }
095
096 @Override
097 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
098 long groupId, java.util.Date createDate, java.util.Date modifiedDate,
099 java.lang.String className, long classPK, java.lang.String classUuid,
100 long classTypeId, long[] categoryIds, java.lang.String[] tagNames,
101 boolean visible, java.util.Date startDate, java.util.Date endDate,
102 java.util.Date expirationDate, java.lang.String mimeType,
103 java.lang.String title, java.lang.String description,
104 java.lang.String summary, java.lang.String url,
105 java.lang.String layoutUuid, int height, int width,
106 java.lang.Integer priority, boolean sync)
107 throws com.liferay.portal.kernel.exception.PortalException,
108 com.liferay.portal.kernel.exception.SystemException {
109 return _assetEntryService.updateEntry(groupId, createDate,
110 modifiedDate, className, classPK, classUuid, classTypeId,
111 categoryIds, tagNames, visible, startDate, endDate, expirationDate,
112 mimeType, title, description, summary, url, layoutUuid, height,
113 width, priority, sync);
114 }
115
116
122 @Override
123 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
124 long groupId, java.lang.String className, long classPK,
125 java.lang.String classUuid, long classTypeId, long[] categoryIds,
126 java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
127 java.util.Date endDate, java.util.Date publishDate,
128 java.util.Date expirationDate, java.lang.String mimeType,
129 java.lang.String title, java.lang.String description,
130 java.lang.String summary, java.lang.String url,
131 java.lang.String layoutUuid, int height, int width,
132 java.lang.Integer priority, boolean sync)
133 throws com.liferay.portal.kernel.exception.PortalException,
134 com.liferay.portal.kernel.exception.SystemException {
135 return _assetEntryService.updateEntry(groupId, className, classPK,
136 classUuid, classTypeId, categoryIds, tagNames, visible, startDate,
137 endDate, publishDate, expirationDate, mimeType, title, description,
138 summary, url, layoutUuid, height, width, priority, sync);
139 }
140
141
147 @Override
148 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
149 long groupId, java.lang.String className, long classPK,
150 java.lang.String classUuid, long classTypeId, long[] categoryIds,
151 java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
152 java.util.Date endDate, java.util.Date expirationDate,
153 java.lang.String mimeType, java.lang.String title,
154 java.lang.String description, java.lang.String summary,
155 java.lang.String url, java.lang.String layoutUuid, int height,
156 int width, java.lang.Integer priority, boolean sync)
157 throws com.liferay.portal.kernel.exception.PortalException,
158 com.liferay.portal.kernel.exception.SystemException {
159 return _assetEntryService.updateEntry(groupId, className, classPK,
160 classUuid, classTypeId, categoryIds, tagNames, visible, startDate,
161 endDate, expirationDate, mimeType, title, description, summary,
162 url, layoutUuid, height, width, priority, sync);
163 }
164
165
168 public AssetEntryService getWrappedAssetEntryService() {
169 return _assetEntryService;
170 }
171
172
175 public void setWrappedAssetEntryService(AssetEntryService assetEntryService) {
176 _assetEntryService = assetEntryService;
177 }
178
179 @Override
180 public AssetEntryService getWrappedService() {
181 return _assetEntryService;
182 }
183
184 @Override
185 public void setWrappedService(AssetEntryService assetEntryService) {
186 _assetEntryService = assetEntryService;
187 }
188
189 private AssetEntryService _assetEntryService;
190 }