001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.dynamicdatalists.service.persistence;
016    
017    import com.liferay.portal.service.persistence.BasePersistence;
018    
019    import com.liferay.portlet.dynamicdatalists.model.DDLRecordSet;
020    
021    /**
022     * The persistence interface for the d d l record set service.
023     *
024     * <p>
025     * Caching information and settings can be found in <code>portal.properties</code>
026     * </p>
027     *
028     * @author Brian Wing Shun Chan
029     * @see DDLRecordSetPersistenceImpl
030     * @see DDLRecordSetUtil
031     * @generated
032     */
033    public interface DDLRecordSetPersistence extends BasePersistence<DDLRecordSet> {
034            /*
035             * NOTE FOR DEVELOPERS:
036             *
037             * Never modify or reference this interface directly. Always use {@link DDLRecordSetUtil} to access the d d l record set persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this interface.
038             */
039    
040            /**
041            * Caches the d d l record set in the entity cache if it is enabled.
042            *
043            * @param ddlRecordSet the d d l record set
044            */
045            public void cacheResult(
046                    com.liferay.portlet.dynamicdatalists.model.DDLRecordSet ddlRecordSet);
047    
048            /**
049            * Caches the d d l record sets in the entity cache if it is enabled.
050            *
051            * @param ddlRecordSets the d d l record sets
052            */
053            public void cacheResult(
054                    java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> ddlRecordSets);
055    
056            /**
057            * Creates a new d d l record set with the primary key. Does not add the d d l record set to the database.
058            *
059            * @param recordSetId the primary key for the new d d l record set
060            * @return the new d d l record set
061            */
062            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet create(
063                    long recordSetId);
064    
065            /**
066            * Removes the d d l record set with the primary key from the database. Also notifies the appropriate model listeners.
067            *
068            * @param recordSetId the primary key of the d d l record set
069            * @return the d d l record set that was removed
070            * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a d d l record set with the primary key could not be found
071            * @throws SystemException if a system exception occurred
072            */
073            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet remove(
074                    long recordSetId)
075                    throws com.liferay.portal.kernel.exception.SystemException,
076                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
077    
078            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet updateImpl(
079                    com.liferay.portlet.dynamicdatalists.model.DDLRecordSet ddlRecordSet,
080                    boolean merge)
081                    throws com.liferay.portal.kernel.exception.SystemException;
082    
083            /**
084            * Returns the d d l record set with the primary key or throws a {@link com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException} if it could not be found.
085            *
086            * @param recordSetId the primary key of the d d l record set
087            * @return the d d l record set
088            * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a d d l record set with the primary key could not be found
089            * @throws SystemException if a system exception occurred
090            */
091            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByPrimaryKey(
092                    long recordSetId)
093                    throws com.liferay.portal.kernel.exception.SystemException,
094                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
095    
096            /**
097            * Returns the d d l record set with the primary key or returns <code>null</code> if it could not be found.
098            *
099            * @param recordSetId the primary key of the d d l record set
100            * @return the d d l record set, or <code>null</code> if a d d l record set with the primary key could not be found
101            * @throws SystemException if a system exception occurred
102            */
103            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByPrimaryKey(
104                    long recordSetId)
105                    throws com.liferay.portal.kernel.exception.SystemException;
106    
107            /**
108            * Returns all the d d l record sets where uuid = &#63;.
109            *
110            * @param uuid the uuid
111            * @return the matching d d l record sets
112            * @throws SystemException if a system exception occurred
113            */
114            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByUuid(
115                    java.lang.String uuid)
116                    throws com.liferay.portal.kernel.exception.SystemException;
117    
118            /**
119            * Returns a range of all the d d l record sets where uuid = &#63;.
120            *
121            * <p>
122            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
123            * </p>
124            *
125            * @param uuid the uuid
126            * @param start the lower bound of the range of d d l record sets
127            * @param end the upper bound of the range of d d l record sets (not inclusive)
128            * @return the range of matching d d l record sets
129            * @throws SystemException if a system exception occurred
130            */
131            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByUuid(
132                    java.lang.String uuid, int start, int end)
133                    throws com.liferay.portal.kernel.exception.SystemException;
134    
135            /**
136            * Returns an ordered range of all the d d l record sets where uuid = &#63;.
137            *
138            * <p>
139            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
140            * </p>
141            *
142            * @param uuid the uuid
143            * @param start the lower bound of the range of d d l record sets
144            * @param end the upper bound of the range of d d l record sets (not inclusive)
145            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
146            * @return the ordered range of matching d d l record sets
147            * @throws SystemException if a system exception occurred
148            */
149            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByUuid(
150                    java.lang.String uuid, int start, int end,
151                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
152                    throws com.liferay.portal.kernel.exception.SystemException;
153    
154            /**
155            * Returns the first d d l record set in the ordered set where uuid = &#63;.
156            *
157            * <p>
158            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
159            * </p>
160            *
161            * @param uuid the uuid
162            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
163            * @return the first matching d d l record set
164            * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found
165            * @throws SystemException if a system exception occurred
166            */
167            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByUuid_First(
168                    java.lang.String uuid,
169                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
170                    throws com.liferay.portal.kernel.exception.SystemException,
171                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
172    
173            /**
174            * Returns the last d d l record set in the ordered set where uuid = &#63;.
175            *
176            * <p>
177            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
178            * </p>
179            *
180            * @param uuid the uuid
181            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
182            * @return the last matching d d l record set
183            * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found
184            * @throws SystemException if a system exception occurred
185            */
186            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByUuid_Last(
187                    java.lang.String uuid,
188                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
189                    throws com.liferay.portal.kernel.exception.SystemException,
190                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
191    
192            /**
193            * Returns the d d l record sets before and after the current d d l record set in the ordered set where uuid = &#63;.
194            *
195            * <p>
196            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
197            * </p>
198            *
199            * @param recordSetId the primary key of the current d d l record set
200            * @param uuid the uuid
201            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
202            * @return the previous, current, and next d d l record set
203            * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a d d l record set with the primary key could not be found
204            * @throws SystemException if a system exception occurred
205            */
206            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet[] findByUuid_PrevAndNext(
207                    long recordSetId, java.lang.String uuid,
208                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
209                    throws com.liferay.portal.kernel.exception.SystemException,
210                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
211    
212            /**
213            * Returns the d d l record set where uuid = &#63; and groupId = &#63; or throws a {@link com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException} if it could not be found.
214            *
215            * @param uuid the uuid
216            * @param groupId the group ID
217            * @return the matching d d l record set
218            * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found
219            * @throws SystemException if a system exception occurred
220            */
221            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByUUID_G(
222                    java.lang.String uuid, long groupId)
223                    throws com.liferay.portal.kernel.exception.SystemException,
224                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
225    
226            /**
227            * Returns the d d l record set where uuid = &#63; and groupId = &#63; or returns <code>null</code> if it could not be found. Uses the finder cache.
228            *
229            * @param uuid the uuid
230            * @param groupId the group ID
231            * @return the matching d d l record set, or <code>null</code> if a matching d d l record set could not be found
232            * @throws SystemException if a system exception occurred
233            */
234            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByUUID_G(
235                    java.lang.String uuid, long groupId)
236                    throws com.liferay.portal.kernel.exception.SystemException;
237    
238            /**
239            * Returns the d d l record set where uuid = &#63; and groupId = &#63; or returns <code>null</code> if it could not be found, optionally using the finder cache.
240            *
241            * @param uuid the uuid
242            * @param groupId the group ID
243            * @param retrieveFromCache whether to use the finder cache
244            * @return the matching d d l record set, or <code>null</code> if a matching d d l record set could not be found
245            * @throws SystemException if a system exception occurred
246            */
247            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByUUID_G(
248                    java.lang.String uuid, long groupId, boolean retrieveFromCache)
249                    throws com.liferay.portal.kernel.exception.SystemException;
250    
251            /**
252            * Returns all the d d l record sets where groupId = &#63;.
253            *
254            * @param groupId the group ID
255            * @return the matching d d l record sets
256            * @throws SystemException if a system exception occurred
257            */
258            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByGroupId(
259                    long groupId)
260                    throws com.liferay.portal.kernel.exception.SystemException;
261    
262            /**
263            * Returns a range of all the d d l record sets where groupId = &#63;.
264            *
265            * <p>
266            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
267            * </p>
268            *
269            * @param groupId the group ID
270            * @param start the lower bound of the range of d d l record sets
271            * @param end the upper bound of the range of d d l record sets (not inclusive)
272            * @return the range of matching d d l record sets
273            * @throws SystemException if a system exception occurred
274            */
275            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByGroupId(
276                    long groupId, int start, int end)
277                    throws com.liferay.portal.kernel.exception.SystemException;
278    
279            /**
280            * Returns an ordered range of all the d d l record sets where groupId = &#63;.
281            *
282            * <p>
283            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
284            * </p>
285            *
286            * @param groupId the group ID
287            * @param start the lower bound of the range of d d l record sets
288            * @param end the upper bound of the range of d d l record sets (not inclusive)
289            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
290            * @return the ordered range of matching d d l record sets
291            * @throws SystemException if a system exception occurred
292            */
293            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findByGroupId(
294                    long groupId, int start, int end,
295                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
296                    throws com.liferay.portal.kernel.exception.SystemException;
297    
298            /**
299            * Returns the first d d l record set in the ordered set where groupId = &#63;.
300            *
301            * <p>
302            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
303            * </p>
304            *
305            * @param groupId the group ID
306            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
307            * @return the first matching d d l record set
308            * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found
309            * @throws SystemException if a system exception occurred
310            */
311            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByGroupId_First(
312                    long groupId,
313                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
314                    throws com.liferay.portal.kernel.exception.SystemException,
315                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
316    
317            /**
318            * Returns the last d d l record set in the ordered set where groupId = &#63;.
319            *
320            * <p>
321            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
322            * </p>
323            *
324            * @param groupId the group ID
325            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
326            * @return the last matching d d l record set
327            * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found
328            * @throws SystemException if a system exception occurred
329            */
330            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByGroupId_Last(
331                    long groupId,
332                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
333                    throws com.liferay.portal.kernel.exception.SystemException,
334                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
335    
336            /**
337            * Returns the d d l record sets before and after the current d d l record set in the ordered set where groupId = &#63;.
338            *
339            * <p>
340            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
341            * </p>
342            *
343            * @param recordSetId the primary key of the current d d l record set
344            * @param groupId the group ID
345            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
346            * @return the previous, current, and next d d l record set
347            * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a d d l record set with the primary key could not be found
348            * @throws SystemException if a system exception occurred
349            */
350            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet[] findByGroupId_PrevAndNext(
351                    long recordSetId, long groupId,
352                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
353                    throws com.liferay.portal.kernel.exception.SystemException,
354                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
355    
356            /**
357            * Returns all the d d l record sets that the user has permission to view where groupId = &#63;.
358            *
359            * @param groupId the group ID
360            * @return the matching d d l record sets that the user has permission to view
361            * @throws SystemException if a system exception occurred
362            */
363            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> filterFindByGroupId(
364                    long groupId)
365                    throws com.liferay.portal.kernel.exception.SystemException;
366    
367            /**
368            * Returns a range of all the d d l record sets that the user has permission to view where groupId = &#63;.
369            *
370            * <p>
371            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
372            * </p>
373            *
374            * @param groupId the group ID
375            * @param start the lower bound of the range of d d l record sets
376            * @param end the upper bound of the range of d d l record sets (not inclusive)
377            * @return the range of matching d d l record sets that the user has permission to view
378            * @throws SystemException if a system exception occurred
379            */
380            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> filterFindByGroupId(
381                    long groupId, int start, int end)
382                    throws com.liferay.portal.kernel.exception.SystemException;
383    
384            /**
385            * Returns an ordered range of all the d d l record sets that the user has permissions to view where groupId = &#63;.
386            *
387            * <p>
388            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
389            * </p>
390            *
391            * @param groupId the group ID
392            * @param start the lower bound of the range of d d l record sets
393            * @param end the upper bound of the range of d d l record sets (not inclusive)
394            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
395            * @return the ordered range of matching d d l record sets that the user has permission to view
396            * @throws SystemException if a system exception occurred
397            */
398            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> filterFindByGroupId(
399                    long groupId, int start, int end,
400                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
401                    throws com.liferay.portal.kernel.exception.SystemException;
402    
403            /**
404            * Returns the d d l record sets before and after the current d d l record set in the ordered set of d d l record sets that the user has permission to view where groupId = &#63;.
405            *
406            * @param recordSetId the primary key of the current d d l record set
407            * @param groupId the group ID
408            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
409            * @return the previous, current, and next d d l record set
410            * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a d d l record set with the primary key could not be found
411            * @throws SystemException if a system exception occurred
412            */
413            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet[] filterFindByGroupId_PrevAndNext(
414                    long recordSetId, long groupId,
415                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
416                    throws com.liferay.portal.kernel.exception.SystemException,
417                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
418    
419            /**
420            * Returns the d d l record set where groupId = &#63; and recordSetKey = &#63; or throws a {@link com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException} if it could not be found.
421            *
422            * @param groupId the group ID
423            * @param recordSetKey the record set key
424            * @return the matching d d l record set
425            * @throws com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException if a matching d d l record set could not be found
426            * @throws SystemException if a system exception occurred
427            */
428            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet findByG_R(
429                    long groupId, java.lang.String recordSetKey)
430                    throws com.liferay.portal.kernel.exception.SystemException,
431                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
432    
433            /**
434            * Returns the d d l record set where groupId = &#63; and recordSetKey = &#63; or returns <code>null</code> if it could not be found. Uses the finder cache.
435            *
436            * @param groupId the group ID
437            * @param recordSetKey the record set key
438            * @return the matching d d l record set, or <code>null</code> if a matching d d l record set could not be found
439            * @throws SystemException if a system exception occurred
440            */
441            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByG_R(
442                    long groupId, java.lang.String recordSetKey)
443                    throws com.liferay.portal.kernel.exception.SystemException;
444    
445            /**
446            * Returns the d d l record set where groupId = &#63; and recordSetKey = &#63; or returns <code>null</code> if it could not be found, optionally using the finder cache.
447            *
448            * @param groupId the group ID
449            * @param recordSetKey the record set key
450            * @param retrieveFromCache whether to use the finder cache
451            * @return the matching d d l record set, or <code>null</code> if a matching d d l record set could not be found
452            * @throws SystemException if a system exception occurred
453            */
454            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchByG_R(
455                    long groupId, java.lang.String recordSetKey, boolean retrieveFromCache)
456                    throws com.liferay.portal.kernel.exception.SystemException;
457    
458            /**
459            * Returns all the d d l record sets.
460            *
461            * @return the d d l record sets
462            * @throws SystemException if a system exception occurred
463            */
464            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findAll()
465                    throws com.liferay.portal.kernel.exception.SystemException;
466    
467            /**
468            * Returns a range of all the d d l record sets.
469            *
470            * <p>
471            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
472            * </p>
473            *
474            * @param start the lower bound of the range of d d l record sets
475            * @param end the upper bound of the range of d d l record sets (not inclusive)
476            * @return the range of d d l record sets
477            * @throws SystemException if a system exception occurred
478            */
479            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findAll(
480                    int start, int end)
481                    throws com.liferay.portal.kernel.exception.SystemException;
482    
483            /**
484            * Returns an ordered range of all the d d l record sets.
485            *
486            * <p>
487            * 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 {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
488            * </p>
489            *
490            * @param start the lower bound of the range of d d l record sets
491            * @param end the upper bound of the range of d d l record sets (not inclusive)
492            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
493            * @return the ordered range of d d l record sets
494            * @throws SystemException if a system exception occurred
495            */
496            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> findAll(
497                    int start, int end,
498                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
499                    throws com.liferay.portal.kernel.exception.SystemException;
500    
501            /**
502            * Removes all the d d l record sets where uuid = &#63; from the database.
503            *
504            * @param uuid the uuid
505            * @throws SystemException if a system exception occurred
506            */
507            public void removeByUuid(java.lang.String uuid)
508                    throws com.liferay.portal.kernel.exception.SystemException;
509    
510            /**
511            * Removes the d d l record set where uuid = &#63; and groupId = &#63; from the database.
512            *
513            * @param uuid the uuid
514            * @param groupId the group ID
515            * @throws SystemException if a system exception occurred
516            */
517            public void removeByUUID_G(java.lang.String uuid, long groupId)
518                    throws com.liferay.portal.kernel.exception.SystemException,
519                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
520    
521            /**
522            * Removes all the d d l record sets where groupId = &#63; from the database.
523            *
524            * @param groupId the group ID
525            * @throws SystemException if a system exception occurred
526            */
527            public void removeByGroupId(long groupId)
528                    throws com.liferay.portal.kernel.exception.SystemException;
529    
530            /**
531            * Removes the d d l record set where groupId = &#63; and recordSetKey = &#63; from the database.
532            *
533            * @param groupId the group ID
534            * @param recordSetKey the record set key
535            * @throws SystemException if a system exception occurred
536            */
537            public void removeByG_R(long groupId, java.lang.String recordSetKey)
538                    throws com.liferay.portal.kernel.exception.SystemException,
539                            com.liferay.portlet.dynamicdatalists.NoSuchRecordSetException;
540    
541            /**
542            * Removes all the d d l record sets from the database.
543            *
544            * @throws SystemException if a system exception occurred
545            */
546            public void removeAll()
547                    throws com.liferay.portal.kernel.exception.SystemException;
548    
549            /**
550            * Returns the number of d d l record sets where uuid = &#63;.
551            *
552            * @param uuid the uuid
553            * @return the number of matching d d l record sets
554            * @throws SystemException if a system exception occurred
555            */
556            public int countByUuid(java.lang.String uuid)
557                    throws com.liferay.portal.kernel.exception.SystemException;
558    
559            /**
560            * Returns the number of d d l record sets where uuid = &#63; and groupId = &#63;.
561            *
562            * @param uuid the uuid
563            * @param groupId the group ID
564            * @return the number of matching d d l record sets
565            * @throws SystemException if a system exception occurred
566            */
567            public int countByUUID_G(java.lang.String uuid, long groupId)
568                    throws com.liferay.portal.kernel.exception.SystemException;
569    
570            /**
571            * Returns the number of d d l record sets where groupId = &#63;.
572            *
573            * @param groupId the group ID
574            * @return the number of matching d d l record sets
575            * @throws SystemException if a system exception occurred
576            */
577            public int countByGroupId(long groupId)
578                    throws com.liferay.portal.kernel.exception.SystemException;
579    
580            /**
581            * Returns the number of d d l record sets that the user has permission to view where groupId = &#63;.
582            *
583            * @param groupId the group ID
584            * @return the number of matching d d l record sets that the user has permission to view
585            * @throws SystemException if a system exception occurred
586            */
587            public int filterCountByGroupId(long groupId)
588                    throws com.liferay.portal.kernel.exception.SystemException;
589    
590            /**
591            * Returns the number of d d l record sets where groupId = &#63; and recordSetKey = &#63;.
592            *
593            * @param groupId the group ID
594            * @param recordSetKey the record set key
595            * @return the number of matching d d l record sets
596            * @throws SystemException if a system exception occurred
597            */
598            public int countByG_R(long groupId, java.lang.String recordSetKey)
599                    throws com.liferay.portal.kernel.exception.SystemException;
600    
601            /**
602            * Returns the number of d d l record sets.
603            *
604            * @return the number of d d l record sets
605            * @throws SystemException if a system exception occurred
606            */
607            public int countAll()
608                    throws com.liferay.portal.kernel.exception.SystemException;
609    }