/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.asset.kernel.service; import aQute.bnd.annotation.ProviderType; import com.liferay.portal.kernel.service.ServiceWrapper; /** * Provides a wrapper for {@link AssetEntryService}. * * @author Brian Wing Shun Chan * @see AssetEntryService * @generated */ @ProviderType public class AssetEntryServiceWrapper implements AssetEntryService, ServiceWrapper<AssetEntryService> { public AssetEntryServiceWrapper(AssetEntryService assetEntryService) { _assetEntryService = assetEntryService; } @Override public com.liferay.asset.kernel.model.AssetEntry fetchEntry(long entryId) throws com.liferay.portal.kernel.exception.PortalException { return _assetEntryService.fetchEntry(entryId); } @Override public com.liferay.asset.kernel.model.AssetEntry getEntry(long entryId) throws com.liferay.portal.kernel.exception.PortalException { return _assetEntryService.getEntry(entryId); } @Override public com.liferay.asset.kernel.model.AssetEntry incrementViewCounter( java.lang.String className, long classPK) throws com.liferay.portal.kernel.exception.PortalException { return _assetEntryService.incrementViewCounter(className, classPK); } /** * @deprecated As of 7.0.0, replaced by {@link #updateEntry(long, Date, Date, String, long, String, long, long[], String[], boolean, boolean, Date, Date, Date, Date, String, String, String, String, String, String, int, int, Double)} */ @Deprecated @Override public com.liferay.asset.kernel.model.AssetEntry updateEntry(long groupId, java.util.Date createDate, java.util.Date modifiedDate, java.lang.String className, long classPK, java.lang.String classUuid, long classTypeId, long[] categoryIds, java.lang.String[] tagNames, boolean listable, boolean visible, java.util.Date startDate, java.util.Date endDate, java.util.Date expirationDate, java.lang.String mimeType, java.lang.String title, java.lang.String description, java.lang.String summary, java.lang.String url, java.lang.String layoutUuid, int height, int width, java.lang.Double priority) throws com.liferay.portal.kernel.exception.PortalException { return _assetEntryService.updateEntry(groupId, createDate, modifiedDate, className, classPK, classUuid, classTypeId, categoryIds, tagNames, listable, visible, startDate, endDate, expirationDate, mimeType, title, description, summary, url, layoutUuid, height, width, priority); } @Override public com.liferay.asset.kernel.model.AssetEntry updateEntry(long groupId, java.util.Date createDate, java.util.Date modifiedDate, java.lang.String className, long classPK, java.lang.String classUuid, long classTypeId, long[] categoryIds, java.lang.String[] tagNames, boolean listable, boolean visible, java.util.Date startDate, java.util.Date endDate, java.util.Date publishDate, java.util.Date expirationDate, java.lang.String mimeType, java.lang.String title, java.lang.String description, java.lang.String summary, java.lang.String url, java.lang.String layoutUuid, int height, int width, java.lang.Double priority) throws com.liferay.portal.kernel.exception.PortalException { return _assetEntryService.updateEntry(groupId, createDate, modifiedDate, className, classPK, classUuid, classTypeId, categoryIds, tagNames, listable, visible, startDate, endDate, publishDate, expirationDate, mimeType, title, description, summary, url, layoutUuid, height, width, priority); } /** * @deprecated As of 7.0.0, replaced by {@link #updateEntry(long, Date, Date, String, long, String, long, long[], String[], boolean, boolean, Date, Date, Date, Date, String, String, String, String, String, String, int, int, Double)} */ @Deprecated @Override public com.liferay.asset.kernel.model.AssetEntry updateEntry(long groupId, java.util.Date createDate, java.util.Date modifiedDate, java.lang.String className, long classPK, java.lang.String classUuid, long classTypeId, long[] categoryIds, java.lang.String[] tagNames, boolean visible, java.util.Date startDate, java.util.Date endDate, java.util.Date expirationDate, java.lang.String mimeType, java.lang.String title, java.lang.String description, java.lang.String summary, java.lang.String url, java.lang.String layoutUuid, int height, int width, java.lang.Integer priority, boolean sync) throws com.liferay.portal.kernel.exception.PortalException { return _assetEntryService.updateEntry(groupId, createDate, modifiedDate, className, classPK, classUuid, classTypeId, categoryIds, tagNames, visible, startDate, endDate, expirationDate, mimeType, title, description, summary, url, layoutUuid, height, width, priority, sync); } @Override public int getCompanyEntriesCount(long companyId) { return _assetEntryService.getCompanyEntriesCount(companyId); } @Override public int getEntriesCount( com.liferay.asset.kernel.service.persistence.AssetEntryQuery entryQuery) throws com.liferay.portal.kernel.exception.PortalException { return _assetEntryService.getEntriesCount(entryQuery); } /** * Returns the OSGi service identifier. * * @return the OSGi service identifier */ @Override public java.lang.String getOSGiServiceIdentifier() { return _assetEntryService.getOSGiServiceIdentifier(); } @Override public java.util.List<com.liferay.asset.kernel.model.AssetEntry> getCompanyEntries( long companyId, int start, int end) { return _assetEntryService.getCompanyEntries(companyId, start, end); } @Override public java.util.List<com.liferay.asset.kernel.model.AssetEntry> getEntries( com.liferay.asset.kernel.service.persistence.AssetEntryQuery entryQuery) throws com.liferay.portal.kernel.exception.PortalException { return _assetEntryService.getEntries(entryQuery); } @Override public AssetEntryService getWrappedService() { return _assetEntryService; } @Override public void setWrappedService(AssetEntryService assetEntryService) { _assetEntryService = assetEntryService; } private AssetEntryService _assetEntryService; }