1
19
20 package com.liferay.portal.service.persistence;
21
22 import com.liferay.portal.PortalException;
23 import com.liferay.portal.SystemException;
24 import com.liferay.portal.kernel.annotation.Propagation;
25 import com.liferay.portal.kernel.annotation.Transactional;
26
27
33 @Transactional(rollbackFor = {
34 PortalException.class, SystemException.class})
35 public interface UserTrackerPathPersistence extends BasePersistence {
36 public com.liferay.portal.model.UserTrackerPath create(
37 long userTrackerPathId);
38
39 public com.liferay.portal.model.UserTrackerPath remove(
40 long userTrackerPathId)
41 throws com.liferay.portal.NoSuchUserTrackerPathException,
42 com.liferay.portal.SystemException;
43
44 public com.liferay.portal.model.UserTrackerPath remove(
45 com.liferay.portal.model.UserTrackerPath userTrackerPath)
46 throws com.liferay.portal.SystemException;
47
48
51 public com.liferay.portal.model.UserTrackerPath update(
52 com.liferay.portal.model.UserTrackerPath userTrackerPath)
53 throws com.liferay.portal.SystemException;
54
55
68 public com.liferay.portal.model.UserTrackerPath update(
69 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
70 throws com.liferay.portal.SystemException;
71
72 public com.liferay.portal.model.UserTrackerPath updateImpl(
73 com.liferay.portal.model.UserTrackerPath userTrackerPath, boolean merge)
74 throws com.liferay.portal.SystemException;
75
76 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
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 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
86 public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
87 long userTrackerId) throws com.liferay.portal.SystemException;
88
89 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
90 public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
91 long userTrackerId, int start, int end)
92 throws com.liferay.portal.SystemException;
93
94 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
95 public java.util.List<com.liferay.portal.model.UserTrackerPath> findByUserTrackerId(
96 long userTrackerId, int start, int end,
97 com.liferay.portal.kernel.util.OrderByComparator obc)
98 throws com.liferay.portal.SystemException;
99
100 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
101 public com.liferay.portal.model.UserTrackerPath findByUserTrackerId_First(
102 long userTrackerId, com.liferay.portal.kernel.util.OrderByComparator obc)
103 throws com.liferay.portal.NoSuchUserTrackerPathException,
104 com.liferay.portal.SystemException;
105
106 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
107 public com.liferay.portal.model.UserTrackerPath findByUserTrackerId_Last(
108 long userTrackerId, com.liferay.portal.kernel.util.OrderByComparator obc)
109 throws com.liferay.portal.NoSuchUserTrackerPathException,
110 com.liferay.portal.SystemException;
111
112 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
113 public com.liferay.portal.model.UserTrackerPath[] findByUserTrackerId_PrevAndNext(
114 long userTrackerPathId, long userTrackerId,
115 com.liferay.portal.kernel.util.OrderByComparator obc)
116 throws com.liferay.portal.NoSuchUserTrackerPathException,
117 com.liferay.portal.SystemException;
118
119 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
120 public java.util.List<Object> findWithDynamicQuery(
121 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
122 throws com.liferay.portal.SystemException;
123
124 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
125 public java.util.List<Object> findWithDynamicQuery(
126 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
127 int end) throws com.liferay.portal.SystemException;
128
129 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
130 public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll()
131 throws com.liferay.portal.SystemException;
132
133 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
134 public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll(
135 int start, int end) throws com.liferay.portal.SystemException;
136
137 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
138 public java.util.List<com.liferay.portal.model.UserTrackerPath> findAll(
139 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
140 throws com.liferay.portal.SystemException;
141
142 public void removeByUserTrackerId(long userTrackerId)
143 throws com.liferay.portal.SystemException;
144
145 public void removeAll() throws com.liferay.portal.SystemException;
146
147 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
148 public int countByUserTrackerId(long userTrackerId)
149 throws com.liferay.portal.SystemException;
150
151 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
152 public int countAll() throws com.liferay.portal.SystemException;
153 }