1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.service.persistence;
16  
17  import com.liferay.portal.model.UserTrackerPath;
18  
19  /**
20   * <a href="UserTrackerPathPersistence.java.html"><b><i>View Source</i></b></a>
21   *
22   * <p>
23   * ServiceBuilder generated this class. Modifications in this class will be
24   * overwritten the next time is generated.
25   * </p>
26   *
27   * @author    Brian Wing Shun Chan
28   * @see       UserTrackerPathPersistenceImpl
29   * @see       UserTrackerPathUtil
30   * @generated
31   */
32  public interface UserTrackerPathPersistence extends BasePersistence<UserTrackerPath> {
33      public void cacheResult(
34          com.liferay.portal.model.UserTrackerPath userTrackerPath);
35  
36      public void cacheResult(
37          java.util.List<com.liferay.portal.model.UserTrackerPath> userTrackerPaths);
38  
39      public com.liferay.portal.model.UserTrackerPath create(
40          long userTrackerPathId);
41  
42      public com.liferay.portal.model.UserTrackerPath remove(
43          long userTrackerPathId)
44          throws com.liferay.portal.NoSuchUserTrackerPathException,
45              com.liferay.portal.kernel.exception.SystemException;
46  
47      public com.liferay.portal.model.UserTrackerPath updateImpl(
48          com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
49          throws com.liferay.portal.kernel.exception.SystemException;
50  
51      public com.liferay.portal.model.UserTrackerPath findByPrimaryKey(
52          long userTrackerPathId)
53          throws com.liferay.portal.NoSuchUserTrackerPathException,
54              com.liferay.portal.kernel.exception.SystemException;
55  
56      public com.liferay.portal.model.UserTrackerPath fetchByPrimaryKey(
57          long userTrackerPathId)
58          throws com.liferay.portal.kernel.exception.SystemException;
59  
60      public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
61          long userTrackerId)
62          throws com.liferay.portal.kernel.exception.SystemException;
63  
64      public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
65          long userTrackerId, int start, int end)
66          throws com.liferay.portal.kernel.exception.SystemException;
67  
68      public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
69          long userTrackerId, int start, int end,
70          com.liferay.portal.kernel.util.OrderByComparator obc)
71          throws com.liferay.portal.kernel.exception.SystemException;
72  
73      public com.liferay.portal.model.UserTrackerPath findByUserTrackerId_First(
74          long userTrackerId, com.liferay.portal.kernel.util.OrderByComparator obc)
75          throws com.liferay.portal.NoSuchUserTrackerPathException,
76              com.liferay.portal.kernel.exception.SystemException;
77  
78      public com.liferay.portal.model.UserTrackerPath findByUserTrackerId_Last(
79          long userTrackerId, com.liferay.portal.kernel.util.OrderByComparator obc)
80          throws com.liferay.portal.NoSuchUserTrackerPathException,
81              com.liferay.portal.kernel.exception.SystemException;
82  
83      public com.liferay.portal.model.UserTrackerPath[] findByUserTrackerId_PrevAndNext(
84          long userTrackerPathId, long userTrackerId,
85          com.liferay.portal.kernel.util.OrderByComparator obc)
86          throws com.liferay.portal.NoSuchUserTrackerPathException,
87              com.liferay.portal.kernel.exception.SystemException;
88  
89      public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll()
90          throws com.liferay.portal.kernel.exception.SystemException;
91  
92      public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll(
93          int start, int end)
94          throws com.liferay.portal.kernel.exception.SystemException;
95  
96      public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll(
97          int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
98          throws com.liferay.portal.kernel.exception.SystemException;
99  
100     public void removeByUserTrackerId(long userTrackerId)
101         throws com.liferay.portal.kernel.exception.SystemException;
102 
103     public void removeAll()
104         throws com.liferay.portal.kernel.exception.SystemException;
105 
106     public int countByUserTrackerId(long userTrackerId)
107         throws com.liferay.portal.kernel.exception.SystemException;
108 
109     public int countAll()
110         throws com.liferay.portal.kernel.exception.SystemException;
111 }