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 TypeMethodDescriptionlongReturns the company ID of this password tracker.Returns the create date of this password tracker.longReturns the mvcc version of this password tracker.Returns the password of this password tracker.longReturns the password tracker ID of this password tracker.longReturns the primary key of this password tracker.longReturns the user ID of this password tracker.Returns the user uuid of this password tracker.voidsetCompanyId(long companyId) Sets the company ID of this password tracker.voidsetCreateDate(Date createDate) Sets the create date of this password tracker.voidsetMvccVersion(long mvccVersion) Sets the mvcc version of this password tracker.voidsetPassword(String password) Sets the password of this password tracker.voidsetPasswordTrackerId(long passwordTrackerId) Sets the password tracker ID of this password tracker.voidsetPrimaryKey(long primaryKey) Sets the primary key of this password tracker.voidsetUserId(long userId) Sets the user ID of this password tracker.voidsetUserUuid(String userUuid) Sets the user uuid of this password tracker.default StringMethods 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, toUnescapedModelMethods inherited from interface com.liferay.portal.kernel.model.ClassedModel
getModelClass, getModelClassNameMethods 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:
getMvccVersionin interfaceMVCCModel- Returns:
- the mvcc version of this password tracker
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this password tracker.- Specified by:
setMvccVersionin 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:
getCompanyIdin interfaceShardedModel- Returns:
- the company ID of this password tracker
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this password tracker.- Specified by:
setCompanyIdin 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:
cloneWithOriginalValuesin interfaceBaseModel<PasswordTracker>
-
toXmlString
-