1
22
23 package com.liferay.portal.service.persistence;
24
25
26
39 public interface PasswordTrackerPersistence extends BasePersistence {
40 public void cacheResult(
41 com.liferay.portal.model.PasswordTracker passwordTracker);
42
43 public void cacheResult(
44 java.util.List<com.liferay.portal.model.PasswordTracker> passwordTrackers);
45
46 public void clearCache();
47
48 public com.liferay.portal.model.PasswordTracker create(
49 long passwordTrackerId);
50
51 public com.liferay.portal.model.PasswordTracker remove(
52 long passwordTrackerId)
53 throws com.liferay.portal.NoSuchPasswordTrackerException,
54 com.liferay.portal.SystemException;
55
56 public com.liferay.portal.model.PasswordTracker remove(
57 com.liferay.portal.model.PasswordTracker passwordTracker)
58 throws com.liferay.portal.SystemException;
59
60
63 public com.liferay.portal.model.PasswordTracker update(
64 com.liferay.portal.model.PasswordTracker passwordTracker)
65 throws com.liferay.portal.SystemException;
66
67
79 public com.liferay.portal.model.PasswordTracker update(
80 com.liferay.portal.model.PasswordTracker passwordTracker, boolean merge)
81 throws com.liferay.portal.SystemException;
82
83 public com.liferay.portal.model.PasswordTracker updateImpl(
84 com.liferay.portal.model.PasswordTracker passwordTracker, boolean merge)
85 throws com.liferay.portal.SystemException;
86
87 public com.liferay.portal.model.PasswordTracker findByPrimaryKey(
88 long passwordTrackerId)
89 throws com.liferay.portal.NoSuchPasswordTrackerException,
90 com.liferay.portal.SystemException;
91
92 public com.liferay.portal.model.PasswordTracker fetchByPrimaryKey(
93 long passwordTrackerId) throws com.liferay.portal.SystemException;
94
95 public java.util.List<com.liferay.portal.model.PasswordTracker> findByUserId(
96 long userId) throws com.liferay.portal.SystemException;
97
98 public java.util.List<com.liferay.portal.model.PasswordTracker> findByUserId(
99 long userId, int start, int end)
100 throws com.liferay.portal.SystemException;
101
102 public java.util.List<com.liferay.portal.model.PasswordTracker> findByUserId(
103 long userId, int start, int end,
104 com.liferay.portal.kernel.util.OrderByComparator obc)
105 throws com.liferay.portal.SystemException;
106
107 public com.liferay.portal.model.PasswordTracker findByUserId_First(
108 long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
109 throws com.liferay.portal.NoSuchPasswordTrackerException,
110 com.liferay.portal.SystemException;
111
112 public com.liferay.portal.model.PasswordTracker findByUserId_Last(
113 long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
114 throws com.liferay.portal.NoSuchPasswordTrackerException,
115 com.liferay.portal.SystemException;
116
117 public com.liferay.portal.model.PasswordTracker[] findByUserId_PrevAndNext(
118 long passwordTrackerId, long userId,
119 com.liferay.portal.kernel.util.OrderByComparator obc)
120 throws com.liferay.portal.NoSuchPasswordTrackerException,
121 com.liferay.portal.SystemException;
122
123 public java.util.List<Object> findWithDynamicQuery(
124 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
125 throws com.liferay.portal.SystemException;
126
127 public java.util.List<Object> findWithDynamicQuery(
128 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
129 int end) throws com.liferay.portal.SystemException;
130
131 public java.util.List<com.liferay.portal.model.PasswordTracker> findAll()
132 throws com.liferay.portal.SystemException;
133
134 public java.util.List<com.liferay.portal.model.PasswordTracker> findAll(
135 int start, int end) throws com.liferay.portal.SystemException;
136
137 public java.util.List<com.liferay.portal.model.PasswordTracker> findAll(
138 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
139 throws com.liferay.portal.SystemException;
140
141 public void removeByUserId(long userId)
142 throws com.liferay.portal.SystemException;
143
144 public void removeAll() throws com.liferay.portal.SystemException;
145
146 public int countByUserId(long userId)
147 throws com.liferay.portal.SystemException;
148
149 public int countAll() throws com.liferay.portal.SystemException;
150 }