1
22
23 package com.liferay.portal.service.persistence;
24
25
31 public class PasswordTrackerUtil {
32 public static com.liferay.portal.model.PasswordTracker create(
33 long passwordTrackerId) {
34 return getPersistence().create(passwordTrackerId);
35 }
36
37 public static com.liferay.portal.model.PasswordTracker remove(
38 long passwordTrackerId)
39 throws com.liferay.portal.SystemException,
40 com.liferay.portal.NoSuchPasswordTrackerException {
41 return getPersistence().remove(passwordTrackerId);
42 }
43
44 public static com.liferay.portal.model.PasswordTracker remove(
45 com.liferay.portal.model.PasswordTracker passwordTracker)
46 throws com.liferay.portal.SystemException {
47 return getPersistence().remove(passwordTracker);
48 }
49
50
53 public static com.liferay.portal.model.PasswordTracker update(
54 com.liferay.portal.model.PasswordTracker passwordTracker)
55 throws com.liferay.portal.SystemException {
56 return getPersistence().update(passwordTracker);
57 }
58
59
72 public static com.liferay.portal.model.PasswordTracker update(
73 com.liferay.portal.model.PasswordTracker passwordTracker, boolean merge)
74 throws com.liferay.portal.SystemException {
75 return getPersistence().update(passwordTracker, merge);
76 }
77
78 public static com.liferay.portal.model.PasswordTracker updateImpl(
79 com.liferay.portal.model.PasswordTracker passwordTracker, boolean merge)
80 throws com.liferay.portal.SystemException {
81 return getPersistence().updateImpl(passwordTracker, merge);
82 }
83
84 public static com.liferay.portal.model.PasswordTracker findByPrimaryKey(
85 long passwordTrackerId)
86 throws com.liferay.portal.SystemException,
87 com.liferay.portal.NoSuchPasswordTrackerException {
88 return getPersistence().findByPrimaryKey(passwordTrackerId);
89 }
90
91 public static com.liferay.portal.model.PasswordTracker fetchByPrimaryKey(
92 long passwordTrackerId) throws com.liferay.portal.SystemException {
93 return getPersistence().fetchByPrimaryKey(passwordTrackerId);
94 }
95
96 public static java.util.List<com.liferay.portal.model.PasswordTracker> findByUserId(
97 long userId) throws com.liferay.portal.SystemException {
98 return getPersistence().findByUserId(userId);
99 }
100
101 public static java.util.List<com.liferay.portal.model.PasswordTracker> findByUserId(
102 long userId, int begin, int end)
103 throws com.liferay.portal.SystemException {
104 return getPersistence().findByUserId(userId, begin, end);
105 }
106
107 public static java.util.List<com.liferay.portal.model.PasswordTracker> findByUserId(
108 long userId, int begin, int end,
109 com.liferay.portal.kernel.util.OrderByComparator obc)
110 throws com.liferay.portal.SystemException {
111 return getPersistence().findByUserId(userId, begin, end, obc);
112 }
113
114 public static com.liferay.portal.model.PasswordTracker findByUserId_First(
115 long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
116 throws com.liferay.portal.SystemException,
117 com.liferay.portal.NoSuchPasswordTrackerException {
118 return getPersistence().findByUserId_First(userId, obc);
119 }
120
121 public static com.liferay.portal.model.PasswordTracker findByUserId_Last(
122 long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
123 throws com.liferay.portal.SystemException,
124 com.liferay.portal.NoSuchPasswordTrackerException {
125 return getPersistence().findByUserId_Last(userId, obc);
126 }
127
128 public static com.liferay.portal.model.PasswordTracker[] findByUserId_PrevAndNext(
129 long passwordTrackerId, long userId,
130 com.liferay.portal.kernel.util.OrderByComparator obc)
131 throws com.liferay.portal.SystemException,
132 com.liferay.portal.NoSuchPasswordTrackerException {
133 return getPersistence()
134 .findByUserId_PrevAndNext(passwordTrackerId, userId, obc);
135 }
136
137 public static java.util.List<com.liferay.portal.model.PasswordTracker> findWithDynamicQuery(
138 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
139 throws com.liferay.portal.SystemException {
140 return getPersistence().findWithDynamicQuery(queryInitializer);
141 }
142
143 public static java.util.List<com.liferay.portal.model.PasswordTracker> findWithDynamicQuery(
144 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
145 int begin, int end) throws com.liferay.portal.SystemException {
146 return getPersistence()
147 .findWithDynamicQuery(queryInitializer, begin, end);
148 }
149
150 public static java.util.List<com.liferay.portal.model.PasswordTracker> findAll()
151 throws com.liferay.portal.SystemException {
152 return getPersistence().findAll();
153 }
154
155 public static java.util.List<com.liferay.portal.model.PasswordTracker> findAll(
156 int begin, int end) throws com.liferay.portal.SystemException {
157 return getPersistence().findAll(begin, end);
158 }
159
160 public static java.util.List<com.liferay.portal.model.PasswordTracker> findAll(
161 int begin, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
162 throws com.liferay.portal.SystemException {
163 return getPersistence().findAll(begin, end, obc);
164 }
165
166 public static void removeByUserId(long userId)
167 throws com.liferay.portal.SystemException {
168 getPersistence().removeByUserId(userId);
169 }
170
171 public static void removeAll() throws com.liferay.portal.SystemException {
172 getPersistence().removeAll();
173 }
174
175 public static int countByUserId(long userId)
176 throws com.liferay.portal.SystemException {
177 return getPersistence().countByUserId(userId);
178 }
179
180 public static int countAll() throws com.liferay.portal.SystemException {
181 return getPersistence().countAll();
182 }
183
184 public static PasswordTrackerPersistence getPersistence() {
185 return _getUtil()._persistence;
186 }
187
188 public void setPersistence(PasswordTrackerPersistence persistence) {
189 _persistence = persistence;
190 }
191
192 private static PasswordTrackerUtil _getUtil() {
193 if (_util == null) {
194 _util = (PasswordTrackerUtil)com.liferay.portal.kernel.bean.BeanLocatorUtil.locate(_UTIL);
195 }
196
197 return _util;
198 }
199
200 private static final String _UTIL = PasswordTrackerUtil.class.getName();
201 private static PasswordTrackerUtil _util;
202 private PasswordTrackerPersistence _persistence;
203 }