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 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 interface MVCCModel
      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 interface MVCCModel
      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 interface ShardedModel
      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 interface ShardedModel
      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

      void setUserUuid(String userUuid)
      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

      void setCreateDate(Date createDate)
      Sets the create date of this password tracker.
      Parameters:
      createDate - the create date of this password tracker
    • getPassword

      @AutoEscape String getPassword()
      Returns the password of this password tracker.
      Returns:
      the password of this password tracker
    • setPassword

      void setPassword(String password)
      Sets the password of this password tracker.
      Parameters:
      password - the password of this password tracker
    • cloneWithOriginalValues

      PasswordTracker cloneWithOriginalValues()
      Specified by:
      cloneWithOriginalValues in interface BaseModel<PasswordTracker>
    • toXmlString

      default String toXmlString()