1
19
20 package com.liferay.portal.service.persistence;
21
22
28 public interface UserTrackerPathPersistence extends BasePersistence {
29 public void cacheResult(
30 com.liferay.portal.model.UserTrackerPath userTrackerPath);
31
32 public void cacheResult(
33 java.util.List<com.liferay.portal.model.UserTrackerPath> userTrackerPaths);
34
35 public void clearCache();
36
37 public com.liferay.portal.model.UserTrackerPath create(
38 long userTrackerPathId);
39
40 public com.liferay.portal.model.UserTrackerPath remove(
41 long userTrackerPathId)
42 throws com.liferay.portal.NoSuchUserTrackerPathException,
43 com.liferay.portal.SystemException;
44
45 public com.liferay.portal.model.UserTrackerPath remove(
46 com.liferay.portal.model.UserTrackerPath userTrackerPath)
47 throws com.liferay.portal.SystemException;
48
49
52 public com.liferay.portal.model.UserTrackerPath update(
53 com.liferay.portal.model.UserTrackerPath userTrackerPath)
54 throws com.liferay.portal.SystemException;
55
56
69 public com.liferay.portal.model.UserTrackerPath update(
70 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
71 throws com.liferay.portal.SystemException;
72
73 public com.liferay.portal.model.UserTrackerPath updateImpl(
74 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
75 throws com.liferay.portal.SystemException;
76
77 public com.liferay.portal.model.UserTrackerPath findByPrimaryKey(
78 long userTrackerPathId)
79 throws com.liferay.portal.NoSuchUserTrackerPathException,
80 com.liferay.portal.SystemException;
81
82 public com.liferay.portal.model.UserTrackerPath fetchByPrimaryKey(
83 long userTrackerPathId) throws com.liferay.portal.SystemException;
84
85 public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
86 long userTrackerId) throws com.liferay.portal.SystemException;
87
88 public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
89 long userTrackerId, int start, int end)
90 throws com.liferay.portal.SystemException;
91
92 public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
93 long userTrackerId, int start, int end,
94 com.liferay.portal.kernel.util.OrderByComparator obc)
95 throws com.liferay.portal.SystemException;
96
97 public com.liferay.portal.model.UserTrackerPath findByUserTrackerId_First(
98 long userTrackerId, com.liferay.portal.kernel.util.OrderByComparator obc)
99 throws com.liferay.portal.NoSuchUserTrackerPathException,
100 com.liferay.portal.SystemException;
101
102 public com.liferay.portal.model.UserTrackerPath findByUserTrackerId_Last(
103 long userTrackerId, com.liferay.portal.kernel.util.OrderByComparator obc)
104 throws com.liferay.portal.NoSuchUserTrackerPathException,
105 com.liferay.portal.SystemException;
106
107 public com.liferay.portal.model.UserTrackerPath[] findByUserTrackerId_PrevAndNext(
108 long userTrackerPathId, long userTrackerId,
109 com.liferay.portal.kernel.util.OrderByComparator obc)
110 throws com.liferay.portal.NoSuchUserTrackerPathException,
111 com.liferay.portal.SystemException;
112
113 public java.util.List<Object> findWithDynamicQuery(
114 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
115 throws com.liferay.portal.SystemException;
116
117 public java.util.List<Object> findWithDynamicQuery(
118 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
119 int end) throws com.liferay.portal.SystemException;
120
121 public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll()
122 throws com.liferay.portal.SystemException;
123
124 public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll(
125 int start, int end) throws com.liferay.portal.SystemException;
126
127 public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll(
128 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
129 throws com.liferay.portal.SystemException;
130
131 public void removeByUserTrackerId(long userTrackerId)
132 throws com.liferay.portal.SystemException;
133
134 public void removeAll() throws com.liferay.portal.SystemException;
135
136 public int countByUserTrackerId(long userTrackerId)
137 throws com.liferay.portal.SystemException;
138
139 public int countAll() throws com.liferay.portal.SystemException;
140 }