Package com.liferay.portal.kernel.model
Interface PasswordTrackerModel
- All Superinterfaces:
BaseModel<PasswordTracker>
,ClassedModel
,Cloneable
,Comparable<PasswordTracker>
,MVCCModel
,Serializable
,ShardedModel
- All Known Subinterfaces:
PasswordTracker
- All Known Implementing Classes:
PasswordTrackerWrapper
@ProviderType
public interface PasswordTrackerModel
extends BaseModel<PasswordTracker>, MVCCModel, ShardedModel
The base model interface for the PasswordTracker service. Represents a row in the "PasswordTracker" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portal.model.impl.PasswordTrackerModelImpl
exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in com.liferay.portal.model.impl.PasswordTrackerImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the company ID of this password tracker.Returns the create date of this password tracker.long
Returns the mvcc version of this password tracker.Returns the password of this password tracker.long
Returns the password tracker ID of this password tracker.long
Returns the primary key of this password tracker.long
Returns the user ID of this password tracker.Returns the user uuid of this password tracker.void
setCompanyId
(long companyId) Sets the company ID of this password tracker.void
setCreateDate
(Date createDate) Sets the create date of this password tracker.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this password tracker.void
setPassword
(String password) Sets the password of this password tracker.void
setPasswordTrackerId
(long passwordTrackerId) Sets the password tracker ID of this password tracker.void
setPrimaryKey
(long primaryKey) Sets the primary key of this password tracker.void
setUserId
(long userId) Sets the user ID of this password tracker.void
setUserUuid
(String userUuid) Sets the user uuid of this password tracker.default String
Methods inherited from interface com.liferay.portal.kernel.model.BaseModel
clone, getAttributeGetterFunctions, getAttributeSetterBiConsumers, getExpandoBridge, getModelAttributes, getPrimaryKeyObj, isCachedModel, isEntityCacheEnabled, isEscapedModel, isFinderCacheEnabled, isNew, resetOriginalValues, setCachedModel, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setModelAttributes, setNew, setPrimaryKeyObj, toCacheModel, toEscapedModel, toUnescapedModel
Methods inherited from interface com.liferay.portal.kernel.model.ClassedModel
getModelClass, getModelClassName
Methods inherited from interface java.lang.Comparable
compareTo
-
Method Details
-
getPrimaryKey
long getPrimaryKey()Returns the primary key of this password tracker.- Returns:
- the primary key of this password tracker
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this password tracker.- Parameters:
primaryKey
- the primary key of this password tracker
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this password tracker.- Specified by:
getMvccVersion
in interfaceMVCCModel
- Returns:
- the mvcc version of this password tracker
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this password tracker.- Specified by:
setMvccVersion
in interfaceMVCCModel
- Parameters:
mvccVersion
- the mvcc version of this password tracker
-
getPasswordTrackerId
long getPasswordTrackerId()Returns the password tracker ID of this password tracker.- Returns:
- the password tracker ID of this password tracker
-
setPasswordTrackerId
void setPasswordTrackerId(long passwordTrackerId) Sets the password tracker ID of this password tracker.- Parameters:
passwordTrackerId
- the password tracker ID of this password tracker
-
getCompanyId
long getCompanyId()Returns the company ID of this password tracker.- Specified by:
getCompanyId
in interfaceShardedModel
- Returns:
- the company ID of this password tracker
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this password tracker.- Specified by:
setCompanyId
in interfaceShardedModel
- Parameters:
companyId
- the company ID of this password tracker
-
getUserId
long getUserId()Returns the user ID of this password tracker.- Returns:
- the user ID of this password tracker
-
setUserId
void setUserId(long userId) Sets the user ID of this password tracker.- Parameters:
userId
- the user ID of this password tracker
-
getUserUuid
String getUserUuid()Returns the user uuid of this password tracker.- Returns:
- the user uuid of this password tracker
-
setUserUuid
Sets the user uuid of this password tracker.- Parameters:
userUuid
- the user uuid of this password tracker
-
getCreateDate
Date getCreateDate()Returns the create date of this password tracker.- Returns:
- the create date of this password tracker
-
setCreateDate
Sets the create date of this password tracker.- Parameters:
createDate
- the create date of this password tracker
-
getPassword
Returns the password of this password tracker.- Returns:
- the password of this password tracker
-
setPassword
Sets the password of this password tracker.- Parameters:
password
- the password of this password tracker
-
cloneWithOriginalValues
PasswordTracker cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfaceBaseModel<PasswordTracker>
-
toXmlString
-