1
22
23 package com.liferay.portal.service;
24
25
26
50 public interface PasswordTrackerLocalService {
51 public com.liferay.portal.model.PasswordTracker addPasswordTracker(
52 com.liferay.portal.model.PasswordTracker passwordTracker)
53 throws com.liferay.portal.SystemException;
54
55 public void deletePasswordTracker(long passwordTrackerId)
56 throws com.liferay.portal.SystemException,
57 com.liferay.portal.PortalException;
58
59 public void deletePasswordTracker(
60 com.liferay.portal.model.PasswordTracker passwordTracker)
61 throws com.liferay.portal.SystemException;
62
63 public java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException;
66
67 public java.util.List<Object> dynamicQuery(
68 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
69 int end) throws com.liferay.portal.SystemException;
70
71 public com.liferay.portal.model.PasswordTracker getPasswordTracker(
72 long passwordTrackerId)
73 throws com.liferay.portal.SystemException,
74 com.liferay.portal.PortalException;
75
76 public java.util.List<com.liferay.portal.model.PasswordTracker> getPasswordTrackers(
77 int start, int end) throws com.liferay.portal.SystemException;
78
79 public int getPasswordTrackersCount()
80 throws com.liferay.portal.SystemException;
81
82 public com.liferay.portal.model.PasswordTracker updatePasswordTracker(
83 com.liferay.portal.model.PasswordTracker passwordTracker)
84 throws com.liferay.portal.SystemException;
85
86 public void deletePasswordTrackers(long userId)
87 throws com.liferay.portal.SystemException;
88
89 public boolean isSameAsCurrentPassword(long userId,
90 java.lang.String newClearTextPwd)
91 throws com.liferay.portal.PortalException,
92 com.liferay.portal.SystemException;
93
94 public boolean isValidPassword(long userId, java.lang.String newClearTextPwd)
95 throws com.liferay.portal.PortalException,
96 com.liferay.portal.SystemException;
97
98 public void trackPassword(long userId, java.lang.String encPassword)
99 throws com.liferay.portal.SystemException;
100 }