com.liferay.segments.service.SegmentsExperienceServiceUtil Maven / Gradle / Ivy
The newest version!
/**
* 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.segments.service;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.module.service.Snapshot;
import com.liferay.portal.kernel.util.OrderByComparator;
import com.liferay.segments.model.SegmentsExperience;
import java.util.List;
import java.util.Map;
/**
* Provides the remote service utility for SegmentsExperience. This utility wraps
* com.liferay.segments.service.impl.SegmentsExperienceServiceImpl
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 Eduardo Garcia
* @see SegmentsExperienceService
* @generated
*/
public class SegmentsExperienceServiceUtil {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify this class directly. Add custom service methods to com.liferay.segments.service.impl.SegmentsExperienceServiceImpl
and rerun ServiceBuilder to regenerate this class.
*/
public static SegmentsExperience addSegmentsExperience(
String externalReferenceCode, long groupId, long segmentsEntryId,
long plid, Map nameMap, boolean active,
com.liferay.portal.kernel.util.UnicodeProperties
typeSettingsUnicodeProperties,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws PortalException {
return getService().addSegmentsExperience(
externalReferenceCode, groupId, segmentsEntryId, plid, nameMap,
active, typeSettingsUnicodeProperties, serviceContext);
}
public static SegmentsExperience addSegmentsExperience(
String externalReferenceCode, long groupId, long segmentsEntryId,
String segmentsExperienceKey, long plid,
Map nameMap, int priority, boolean active,
com.liferay.portal.kernel.util.UnicodeProperties
typeSettingsUnicodeProperties,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws PortalException {
return getService().addSegmentsExperience(
externalReferenceCode, groupId, segmentsEntryId,
segmentsExperienceKey, plid, nameMap, priority, active,
typeSettingsUnicodeProperties, serviceContext);
}
public static SegmentsExperience appendSegmentsExperience(
long groupId, long segmentsEntryId, long plid,
Map nameMap, boolean active,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws PortalException {
return getService().appendSegmentsExperience(
groupId, segmentsEntryId, plid, nameMap, active, serviceContext);
}
public static SegmentsExperience appendSegmentsExperience(
long groupId, long segmentsEntryId, long plid,
Map nameMap, boolean active,
com.liferay.portal.kernel.util.UnicodeProperties
typeSettingsUnicodeProperties,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws PortalException {
return getService().appendSegmentsExperience(
groupId, segmentsEntryId, plid, nameMap, active,
typeSettingsUnicodeProperties, serviceContext);
}
public static SegmentsExperience deleteSegmentsExperience(
long segmentsExperienceId)
throws PortalException {
return getService().deleteSegmentsExperience(segmentsExperienceId);
}
public static SegmentsExperience deleteSegmentsExperience(
String externalReferenceCode, long groupId)
throws PortalException {
return getService().deleteSegmentsExperience(
externalReferenceCode, groupId);
}
public static SegmentsExperience fetchSegmentsExperience(
long groupId, String segmentsExperienceKey, long plid)
throws PortalException {
return getService().fetchSegmentsExperience(
groupId, segmentsExperienceKey, plid);
}
public static SegmentsExperience
fetchSegmentsExperienceByExternalReferenceCode(
String externalReferenceCode, long groupId)
throws PortalException {
return getService().fetchSegmentsExperienceByExternalReferenceCode(
externalReferenceCode, groupId);
}
/**
* Returns the OSGi service identifier.
*
* @return the OSGi service identifier
*/
public static String getOSGiServiceIdentifier() {
return getService().getOSGiServiceIdentifier();
}
public static SegmentsExperience getSegmentsExperience(
long segmentsExperienceId)
throws PortalException {
return getService().getSegmentsExperience(segmentsExperienceId);
}
public static SegmentsExperience getSegmentsExperience(
long groupId, String segmentsExperienceKey, long plid)
throws PortalException {
return getService().getSegmentsExperience(
groupId, segmentsExperienceKey, plid);
}
public static SegmentsExperience
getSegmentsExperienceByExternalReferenceCode(
String externalReferenceCode, long groupId)
throws PortalException {
return getService().getSegmentsExperienceByExternalReferenceCode(
externalReferenceCode, groupId);
}
public static List getSegmentsExperiences(
long groupId, long plid, boolean active)
throws PortalException {
return getService().getSegmentsExperiences(groupId, plid, active);
}
public static List getSegmentsExperiences(
long groupId, long plid, boolean active, int start, int end,
OrderByComparator orderByComparator)
throws PortalException {
return getService().getSegmentsExperiences(
groupId, plid, active, start, end, orderByComparator);
}
public static int getSegmentsExperiencesCount(
long groupId, long plid, boolean active)
throws PortalException {
return getService().getSegmentsExperiencesCount(groupId, plid, active);
}
public static SegmentsExperience updateSegmentsExperience(
long segmentsExperienceId, long segmentsEntryId,
Map nameMap, boolean active)
throws PortalException {
return getService().updateSegmentsExperience(
segmentsExperienceId, segmentsEntryId, nameMap, active);
}
public static SegmentsExperience updateSegmentsExperience(
long segmentsExperienceId, long segmentsEntryId,
Map nameMap, boolean active,
com.liferay.portal.kernel.util.UnicodeProperties
typeSettingsUnicodeProperties)
throws PortalException {
return getService().updateSegmentsExperience(
segmentsExperienceId, segmentsEntryId, nameMap, active,
typeSettingsUnicodeProperties);
}
public static SegmentsExperience updateSegmentsExperiencePriority(
long segmentsExperienceId, int newPriority)
throws PortalException {
return getService().updateSegmentsExperiencePriority(
segmentsExperienceId, newPriority);
}
public static SegmentsExperienceService getService() {
return _serviceSnapshot.get();
}
private static final Snapshot _serviceSnapshot =
new Snapshot<>(
SegmentsExperienceServiceUtil.class,
SegmentsExperienceService.class);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy