Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.fragment.service;
import com.liferay.fragment.model.FragmentEntry;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.module.service.Snapshot;
import com.liferay.portal.kernel.util.OrderByComparator;
import java.util.List;
/**
* Provides the remote service utility for FragmentEntry. This utility wraps
* com.liferay.fragment.service.impl.FragmentEntryServiceImpl and is an
* 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 FragmentEntryService
* @generated
*/
public class FragmentEntryServiceUtil {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify this class directly. Add custom service methods to com.liferay.fragment.service.impl.FragmentEntryServiceImpl and rerun ServiceBuilder to regenerate this class.
*/
public static FragmentEntry addFragmentEntry(
long groupId, long fragmentCollectionId, String fragmentEntryKey,
String name, String css, String html, String js,
String configuration, long previewFileEntryId, int type, int status,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws PortalException {
return getService().addFragmentEntry(
groupId, fragmentCollectionId, fragmentEntryKey, name, css, html,
js, configuration, previewFileEntryId, type, status,
serviceContext);
}
public static FragmentEntry addFragmentEntry(
String externalReferenceCode, long groupId,
long fragmentCollectionId, String fragmentEntryKey, String name,
String css, String html, String js, boolean cacheable,
String configuration, String icon, long previewFileEntryId,
boolean readOnly, int type, String typeOptions, int status,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws PortalException {
return getService().addFragmentEntry(
externalReferenceCode, groupId, fragmentCollectionId,
fragmentEntryKey, name, css, html, js, cacheable, configuration,
icon, previewFileEntryId, readOnly, type, typeOptions, status,
serviceContext);
}
public static FragmentEntry copyFragmentEntry(
long groupId, long sourceFragmentEntryId, long fragmentCollectionId,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws PortalException {
return getService().copyFragmentEntry(
groupId, sourceFragmentEntryId, fragmentCollectionId,
serviceContext);
}
public static void deleteFragmentEntries(long[] fragmentEntriesIds)
throws PortalException {
getService().deleteFragmentEntries(fragmentEntriesIds);
}
public static FragmentEntry deleteFragmentEntry(long fragmentEntryId)
throws PortalException {
return getService().deleteFragmentEntry(fragmentEntryId);
}
public static FragmentEntry deleteFragmentEntry(
String externalReferenceCode, long groupId)
throws PortalException {
return getService().deleteFragmentEntry(externalReferenceCode, groupId);
}
public static FragmentEntry fetchDraft(long primaryKey) {
return getService().fetchDraft(primaryKey);
}
public static FragmentEntry fetchFragmentEntry(long fragmentEntryId)
throws PortalException {
return getService().fetchFragmentEntry(fragmentEntryId);
}
public static FragmentEntry getDraft(long primaryKey)
throws PortalException {
return getService().getDraft(primaryKey);
}
public static List