/** * 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.announcements.kernel.service; import aQute.bnd.annotation.ProviderType; import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil; import com.liferay.portal.kernel.util.ReferenceRegistry; /** * Provides the remote service utility for AnnouncementsEntry. This utility wraps * {@link com.liferay.portlet.announcements.service.impl.AnnouncementsEntryServiceImpl} and is the * primary access point for service operations in application layer code running * on a remote server. Methods of this service are expected to have security * checks based on the propagated JAAS credentials because this service can be * accessed remotely. * * @author Brian Wing Shun Chan * @see AnnouncementsEntryService * @see com.liferay.portlet.announcements.service.base.AnnouncementsEntryServiceBaseImpl * @see com.liferay.portlet.announcements.service.impl.AnnouncementsEntryServiceImpl * @generated */ @ProviderType public class AnnouncementsEntryServiceUtil { /* * NOTE FOR DEVELOPERS: * * Never modify this class directly. Add custom service methods to {@link com.liferay.portlet.announcements.service.impl.AnnouncementsEntryServiceImpl} and rerun ServiceBuilder to regenerate this class. */ public static com.liferay.announcements.kernel.model.AnnouncementsEntry addEntry( long classNameId, long classPK, java.lang.String title, java.lang.String content, java.lang.String url, java.lang.String type, java.util.Date displayDate, java.util.Date expirationDate, int priority, boolean alert) throws com.liferay.portal.kernel.exception.PortalException { return getService() .addEntry(classNameId, classPK, title, content, url, type, displayDate, expirationDate, priority, alert); } /** * @deprecated As of 7.0.0, replaced by {@link #addEntry(long, long, String, String, String, String, Date, Date, int, boolean)} */ @Deprecated public static com.liferay.announcements.kernel.model.AnnouncementsEntry addEntry( long plid, long classNameId, long classPK, java.lang.String title, java.lang.String content, java.lang.String url, java.lang.String type, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, boolean displayImmediately, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, int priority, boolean alert) throws com.liferay.portal.kernel.exception.PortalException { return getService() .addEntry(plid, classNameId, classPK, title, content, url, type, displayDateMonth, displayDateDay, displayDateYear, displayDateHour, displayDateMinute, displayImmediately, expirationDateMonth, expirationDateDay, expirationDateYear, expirationDateHour, expirationDateMinute, priority, alert); } public static com.liferay.announcements.kernel.model.AnnouncementsEntry getEntry( long entryId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getEntry(entryId); } /** * @deprecated As of 7.0.0, replaced by {@link #updateEntry(long, String, String, String, String, Date, Date, int)} */ @Deprecated public static com.liferay.announcements.kernel.model.AnnouncementsEntry updateEntry( long entryId, java.lang.String title, java.lang.String content, java.lang.String url, java.lang.String type, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, boolean displayImmediately, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, int priority) throws com.liferay.portal.kernel.exception.PortalException { return getService() .updateEntry(entryId, title, content, url, type, displayDateMonth, displayDateDay, displayDateYear, displayDateHour, displayDateMinute, displayImmediately, expirationDateMonth, expirationDateDay, expirationDateYear, expirationDateHour, expirationDateMinute, priority); } public static com.liferay.announcements.kernel.model.AnnouncementsEntry updateEntry( long entryId, java.lang.String title, java.lang.String content, java.lang.String url, java.lang.String type, java.util.Date displayDate, java.util.Date expirationDate, int priority) throws com.liferay.portal.kernel.exception.PortalException { return getService() .updateEntry(entryId, title, content, url, type, displayDate, expirationDate, priority); } /** * Returns the OSGi service identifier. * * @return the OSGi service identifier */ public static java.lang.String getOSGiServiceIdentifier() { return getService().getOSGiServiceIdentifier(); } public static void deleteEntry(long entryId) throws com.liferay.portal.kernel.exception.PortalException { getService().deleteEntry(entryId); } public static AnnouncementsEntryService getService() { if (_service == null) { _service = (AnnouncementsEntryService)PortalBeanLocatorUtil.locate(AnnouncementsEntryService.class.getName()); ReferenceRegistry.registerReference(AnnouncementsEntryServiceUtil.class, "_service"); } return _service; } private static AnnouncementsEntryService _service; }