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.SystemException;
46
47
50 public com.liferay.portal.model.UserTrackerPath update(
51 com.liferay.portal.model.UserTrackerPath userTrackerPath)
52 throws com.liferay.portal.SystemException;
53
54 public com.liferay.portal.model.UserTrackerPath updateImpl(
55 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
56 throws com.liferay.portal.SystemException;
57
58 public com.liferay.portal.model.UserTrackerPath findByPrimaryKey(
59 long userTrackerPathId)
60 throws com.liferay.portal.NoSuchUserTrackerPathException,
61 com.liferay.portal.SystemException;
62
63 public com.liferay.portal.model.UserTrackerPath fetchByPrimaryKey(
64 long userTrackerPathId) throws com.liferay.portal.SystemException;
65
66 public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
67 long userTrackerId) throws com.liferay.portal.SystemException;
68
69 public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
70 long userTrackerId, int start, int end)
71 throws com.liferay.portal.SystemException;
72
73 public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
74 long userTrackerId, int start, int end,
75 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
76 throws com.liferay.portal.SystemException;
77
78 public com.liferay.portal.model.UserTrackerPath findByUserTrackerId_First(
79 long userTrackerId,
80 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81 throws com.liferay.portal.NoSuchUserTrackerPathException,
82 com.liferay.portal.SystemException;
83
84 public com.liferay.portal.model.UserTrackerPath findByUserTrackerId_Last(
85 long userTrackerId,
86 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
87 throws com.liferay.portal.NoSuchUserTrackerPathException,
88 com.liferay.portal.SystemException;
89
90 public com.liferay.portal.model.UserTrackerPath[] findByUserTrackerId_PrevAndNext(
91 long userTrackerPathId, long userTrackerId,
92 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
93 throws com.liferay.portal.NoSuchUserTrackerPathException,
94 com.liferay.portal.SystemException;
95
96 public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll()
97 throws com.liferay.portal.SystemException;
98
99 public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll(
100 int start, int end) throws com.liferay.portal.SystemException;
101
102 public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll(
103 int start, int end,
104 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
105 throws com.liferay.portal.SystemException;
106
107 public void removeByUserTrackerId(long userTrackerId)
108 throws com.liferay.portal.SystemException;
109
110 public void removeAll() throws com.liferay.portal.SystemException;
111
112 public int countByUserTrackerId(long userTrackerId)
113 throws com.liferay.portal.SystemException;
114
115 public int countAll() throws com.liferay.portal.SystemException;
116 }