com.liferay.segments.service.SegmentsExperimentRelServiceUtil 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.segments.model.SegmentsExperimentRel;
import java.util.List;
/**
* Provides the remote service utility for SegmentsExperimentRel. This utility wraps
* com.liferay.segments.service.impl.SegmentsExperimentRelServiceImpl
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 SegmentsExperimentRelService
* @generated
*/
public class SegmentsExperimentRelServiceUtil {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify this class directly. Add custom service methods to com.liferay.segments.service.impl.SegmentsExperimentRelServiceImpl
and rerun ServiceBuilder to regenerate this class.
*/
public static SegmentsExperimentRel addSegmentsExperimentRel(
long segmentsExperimentId, long segmentsExperienceId,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws PortalException {
return getService().addSegmentsExperimentRel(
segmentsExperimentId, segmentsExperienceId, serviceContext);
}
public static SegmentsExperimentRel deleteSegmentsExperimentRel(
long segmentsExperimentRelId)
throws PortalException {
return getService().deleteSegmentsExperimentRel(
segmentsExperimentRelId);
}
/**
* Returns the OSGi service identifier.
*
* @return the OSGi service identifier
*/
public static String getOSGiServiceIdentifier() {
return getService().getOSGiServiceIdentifier();
}
public static SegmentsExperimentRel getSegmentsExperimentRel(
long segmentsExperimentId, long segmentsExperienceId)
throws PortalException {
return getService().getSegmentsExperimentRel(
segmentsExperimentId, segmentsExperienceId);
}
public static List getSegmentsExperimentRels(
long segmentsExperimentId)
throws PortalException {
return getService().getSegmentsExperimentRels(segmentsExperimentId);
}
public static SegmentsExperimentRel updateSegmentsExperimentRel(
long segmentsExperimentRelId, double split)
throws PortalException {
return getService().updateSegmentsExperimentRel(
segmentsExperimentRelId, split);
}
public static SegmentsExperimentRel updateSegmentsExperimentRel(
long segmentsExperimentRelId, String name,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws PortalException {
return getService().updateSegmentsExperimentRel(
segmentsExperimentRelId, name, serviceContext);
}
public static SegmentsExperimentRelService getService() {
return _serviceSnapshot.get();
}
private static final Snapshot
_serviceSnapshot = new Snapshot<>(
SegmentsExperimentRelServiceUtil.class,
SegmentsExperimentRelService.class);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy