/** * 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.dynamic.data.lists.service; import aQute.bnd.annotation.ProviderType; import com.liferay.osgi.util.ServiceTrackerFactory; import org.osgi.util.tracker.ServiceTracker; /** * Provides the remote service utility for DDLRecordVersion. This utility wraps * {@link com.liferay.dynamic.data.lists.service.impl.DDLRecordVersionServiceImpl} 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 DDLRecordVersionService * @see com.liferay.dynamic.data.lists.service.base.DDLRecordVersionServiceBaseImpl * @see com.liferay.dynamic.data.lists.service.impl.DDLRecordVersionServiceImpl * @generated */ @ProviderType public class DDLRecordVersionServiceUtil { /* * NOTE FOR DEVELOPERS: * * Never modify this class directly. Add custom service methods to {@link com.liferay.dynamic.data.lists.service.impl.DDLRecordVersionServiceImpl} and rerun ServiceBuilder to regenerate this class. */ /** * Returns a record version matching the record and version. * * @param recordId the primary key of the record * @param version the version of the record to return * @return the record version macthing the record primary key and version * @throws PortalException if the matching record set is not found or if the user do not have the required permission to access the record set */ public static com.liferay.dynamic.data.lists.model.DDLRecordVersion getRecordVersion( long recordId, java.lang.String version) throws com.liferay.portal.kernel.exception.PortalException { return getService().getRecordVersion(recordId, version); } /** * Returns the record version matching the ID. * * @param recordVersionId the primary key of the record version * @return the record version with the ID * @throws PortalException if the matching record set could not be found or if the user did not have the required permission to access the record set */ public static com.liferay.dynamic.data.lists.model.DDLRecordVersion getRecordVersion( long recordVersionId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getRecordVersion(recordVersionId); } /** * Returns the number of record versions matching the record. * * @param recordId the primary key of the record * @return the number of matching record versions * @throws PortalException if a portal exception occurred */ public static int getRecordVersionsCount(long recordId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getRecordVersionsCount(recordId); } /** * Returns the OSGi service identifier. * * @return the OSGi service identifier */ public static java.lang.String getOSGiServiceIdentifier() { return getService().getOSGiServiceIdentifier(); } /** * Returns all the record versions matching the record. * * @param recordId the primary key of the record * @return the matching record versions * @throws PortalException if a portal exception occurred */ public static java.util.List<com.liferay.dynamic.data.lists.model.DDLRecordVersion> getRecordVersions( long recordId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getRecordVersions(recordId); } /** * Returns an ordered range of record versions matching the record. * * <p> * Useful when paginating results. Returns a maximum of <code>end - * start</code> instances. <code>start</code> and <code>end</code> are not * primary keys, they are indexes in the result set. Thus, <code>0</code> * refers to the first result in the set. Setting both <code>start</code> * and <code>end</code> to <code>QueryUtil.ALL_POS</code> will return the * full result set. * </p> * * @param recordId the primary key of the record * @param start the lower bound of the range of record versions to return * @param end the upper bound of the range of record versions to return (not inclusive) * @param orderByComparator the comparator used to order the record versions * @return the range of matching record versions ordered by the comparator * @throws PortalException if a portal exception occurred */ public static java.util.List<com.liferay.dynamic.data.lists.model.DDLRecordVersion> getRecordVersions( long recordId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.dynamic.data.lists.model.DDLRecordVersion> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException { return getService() .getRecordVersions(recordId, start, end, orderByComparator); } public static DDLRecordVersionService getService() { return _serviceTracker.getService(); } private static ServiceTracker<DDLRecordVersionService, DDLRecordVersionService> _serviceTracker = ServiceTrackerFactory.open(DDLRecordVersionService.class); }