1
14
15 package com.liferay.portal.service.persistence;
16
17 import com.liferay.portal.model.UserTrackerPath;
18
19
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 }