1
22
23 package com.liferay.portal.service.persistence;
24
25 import com.liferay.portal.model.PasswordTracker;
26
27
40 public interface PasswordTrackerPersistence extends BasePersistence<PasswordTracker> {
41 public void cacheResult(
42 com.liferay.portal.model.PasswordTracker passwordTracker);
43
44 public void cacheResult(
45 java.util.List<com.liferay.portal.model.PasswordTracker> passwordTrackers);
46
47 public com.liferay.portal.model.PasswordTracker create(
48 long passwordTrackerId);
49
50 public com.liferay.portal.model.PasswordTracker remove(
51 long passwordTrackerId)
52 throws com.liferay.portal.NoSuchPasswordTrackerException,
53 com.liferay.portal.SystemException;
54
55
58 public com.liferay.portal.model.PasswordTracker update(
59 com.liferay.portal.model.PasswordTracker passwordTracker)
60 throws com.liferay.portal.SystemException;
61
62 public com.liferay.portal.model.PasswordTracker updateImpl(
63 com.liferay.portal.model.PasswordTracker passwordTracker, boolean merge)
64 throws com.liferay.portal.SystemException;
65
66 public com.liferay.portal.model.PasswordTracker findByPrimaryKey(
67 long passwordTrackerId)
68 throws com.liferay.portal.NoSuchPasswordTrackerException,
69 com.liferay.portal.SystemException;
70
71 public com.liferay.portal.model.PasswordTracker fetchByPrimaryKey(
72 long passwordTrackerId) throws com.liferay.portal.SystemException;
73
74 public java.util.List<com.liferay.portal.model.PasswordTracker> findByUserId(
75 long userId) throws com.liferay.portal.SystemException;
76
77 public java.util.List<com.liferay.portal.model.PasswordTracker> findByUserId(
78 long userId, int start, int end)
79 throws com.liferay.portal.SystemException;
80
81 public java.util.List<com.liferay.portal.model.PasswordTracker> findByUserId(
82 long userId, int start, int end,
83 com.liferay.portal.kernel.util.OrderByComparator obc)
84 throws com.liferay.portal.SystemException;
85
86 public com.liferay.portal.model.PasswordTracker findByUserId_First(
87 long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
88 throws com.liferay.portal.NoSuchPasswordTrackerException,
89 com.liferay.portal.SystemException;
90
91 public com.liferay.portal.model.PasswordTracker findByUserId_Last(
92 long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
93 throws com.liferay.portal.NoSuchPasswordTrackerException,
94 com.liferay.portal.SystemException;
95
96 public com.liferay.portal.model.PasswordTracker[] findByUserId_PrevAndNext(
97 long passwordTrackerId, long userId,
98 com.liferay.portal.kernel.util.OrderByComparator obc)
99 throws com.liferay.portal.NoSuchPasswordTrackerException,
100 com.liferay.portal.SystemException;
101
102 public java.util.List<com.liferay.portal.model.PasswordTracker> findAll()
103 throws com.liferay.portal.SystemException;
104
105 public java.util.List<com.liferay.portal.model.PasswordTracker> findAll(
106 int start, int end) throws com.liferay.portal.SystemException;
107
108 public java.util.List<com.liferay.portal.model.PasswordTracker> findAll(
109 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
110 throws com.liferay.portal.SystemException;
111
112 public void removeByUserId(long userId)
113 throws com.liferay.portal.SystemException;
114
115 public void removeAll() throws com.liferay.portal.SystemException;
116
117 public int countByUserId(long userId)
118 throws com.liferay.portal.SystemException;
119
120 public int countAll() throws com.liferay.portal.SystemException;
121 }