/** * 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.journal.service; import aQute.bnd.annotation.ProviderType; import com.liferay.portal.kernel.service.ServiceWrapper; /** * Provides a wrapper for {@link JournalFeedService}. * * @author Brian Wing Shun Chan * @see JournalFeedService * @generated */ @ProviderType public class JournalFeedServiceWrapper implements JournalFeedService, ServiceWrapper<JournalFeedService> { public JournalFeedServiceWrapper(JournalFeedService journalFeedService) { _journalFeedService = journalFeedService; } @Override public com.liferay.journal.model.JournalFeed addFeed(long groupId, java.lang.String feedId, boolean autoFeedId, java.lang.String name, java.lang.String description, java.lang.String ddmStructureKey, java.lang.String ddmTemplateKey, java.lang.String ddmRendererTemplateKey, int delta, java.lang.String orderByCol, java.lang.String orderByType, java.lang.String targetLayoutFriendlyUrl, java.lang.String targetPortletId, java.lang.String contentField, java.lang.String feedType, double feedVersion, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException { return _journalFeedService.addFeed(groupId, feedId, autoFeedId, name, description, ddmStructureKey, ddmTemplateKey, ddmRendererTemplateKey, delta, orderByCol, orderByType, targetLayoutFriendlyUrl, targetPortletId, contentField, feedType, feedVersion, serviceContext); } @Override public com.liferay.journal.model.JournalFeed getFeed(long feedId) throws com.liferay.portal.kernel.exception.PortalException { return _journalFeedService.getFeed(feedId); } @Override public com.liferay.journal.model.JournalFeed getFeed(long groupId, java.lang.String feedId) throws com.liferay.portal.kernel.exception.PortalException { return _journalFeedService.getFeed(groupId, feedId); } @Override public com.liferay.journal.model.JournalFeed updateFeed(long groupId, java.lang.String feedId, java.lang.String name, java.lang.String description, java.lang.String ddmStructureKey, java.lang.String ddmTemplateKey, java.lang.String ddmRendererTemplateKey, int delta, java.lang.String orderByCol, java.lang.String orderByType, java.lang.String targetLayoutFriendlyUrl, java.lang.String targetPortletId, java.lang.String contentField, java.lang.String feedType, double feedVersion, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException { return _journalFeedService.updateFeed(groupId, feedId, name, description, ddmStructureKey, ddmTemplateKey, ddmRendererTemplateKey, delta, orderByCol, orderByType, targetLayoutFriendlyUrl, targetPortletId, contentField, feedType, feedVersion, serviceContext); } /** * Returns the OSGi service identifier. * * @return the OSGi service identifier */ @Override public java.lang.String getOSGiServiceIdentifier() { return _journalFeedService.getOSGiServiceIdentifier(); } @Override public void deleteFeed(long feedId) throws com.liferay.portal.kernel.exception.PortalException { _journalFeedService.deleteFeed(feedId); } @Override public void deleteFeed(long groupId, java.lang.String feedId) throws com.liferay.portal.kernel.exception.PortalException { _journalFeedService.deleteFeed(groupId, feedId); } @Override public JournalFeedService getWrappedService() { return _journalFeedService; } @Override public void setWrappedService(JournalFeedService journalFeedService) { _journalFeedService = journalFeedService; } private JournalFeedService _journalFeedService; }