Interface UserTrackerModel

All Superinterfaces:
BaseModel<UserTracker>, ClassedModel, Cloneable, Comparable<UserTracker>, MVCCModel, Serializable, ShardedModel
All Known Subinterfaces:
UserTracker
All Known Implementing Classes:
UserTrackerWrapper

@ProviderType public interface UserTrackerModel extends BaseModel<UserTracker>, MVCCModel, ShardedModel
The base model interface for the UserTracker service. Represents a row in the "UserTracker" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation com.liferay.portal.model.impl.UserTrackerModelImpl 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.UserTrackerImpl.

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Method Details

    • getPrimaryKey

      long getPrimaryKey()
      Returns the primary key of this user tracker.
      Returns:
      the primary key of this user tracker
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this user tracker.
      Parameters:
      primaryKey - the primary key of this user tracker
    • getMvccVersion

      long getMvccVersion()
      Returns the mvcc version of this user tracker.
      Specified by:
      getMvccVersion in interface MVCCModel
      Returns:
      the mvcc version of this user tracker
    • setMvccVersion

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this user tracker.
      Specified by:
      setMvccVersion in interface MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this user tracker
    • getUserTrackerId

      long getUserTrackerId()
      Returns the user tracker ID of this user tracker.
      Returns:
      the user tracker ID of this user tracker
    • setUserTrackerId

      void setUserTrackerId(long userTrackerId)
      Sets the user tracker ID of this user tracker.
      Parameters:
      userTrackerId - the user tracker ID of this user tracker
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this user tracker.
      Specified by:
      getCompanyId in interface ShardedModel
      Returns:
      the company ID of this user tracker
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this user tracker.
      Specified by:
      setCompanyId in interface ShardedModel
      Parameters:
      companyId - the company ID of this user tracker
    • getUserId

      long getUserId()
      Returns the user ID of this user tracker.
      Returns:
      the user ID of this user tracker
    • setUserId

      void setUserId(long userId)
      Sets the user ID of this user tracker.
      Parameters:
      userId - the user ID of this user tracker
    • getUserUuid

      String getUserUuid()
      Returns the user uuid of this user tracker.
      Returns:
      the user uuid of this user tracker
    • setUserUuid

      void setUserUuid(String userUuid)
      Sets the user uuid of this user tracker.
      Parameters:
      userUuid - the user uuid of this user tracker
    • getModifiedDate

      Date getModifiedDate()
      Returns the modified date of this user tracker.
      Returns:
      the modified date of this user tracker
    • setModifiedDate

      void setModifiedDate(Date modifiedDate)
      Sets the modified date of this user tracker.
      Parameters:
      modifiedDate - the modified date of this user tracker
    • getSessionId

      @AutoEscape String getSessionId()
      Returns the session ID of this user tracker.
      Returns:
      the session ID of this user tracker
    • setSessionId

      void setSessionId(String sessionId)
      Sets the session ID of this user tracker.
      Parameters:
      sessionId - the session ID of this user tracker
    • getRemoteAddr

      @AutoEscape String getRemoteAddr()
      Returns the remote addr of this user tracker.
      Returns:
      the remote addr of this user tracker
    • setRemoteAddr

      void setRemoteAddr(String remoteAddr)
      Sets the remote addr of this user tracker.
      Parameters:
      remoteAddr - the remote addr of this user tracker
    • getRemoteHost

      @AutoEscape String getRemoteHost()
      Returns the remote host of this user tracker.
      Returns:
      the remote host of this user tracker
    • setRemoteHost

      void setRemoteHost(String remoteHost)
      Sets the remote host of this user tracker.
      Parameters:
      remoteHost - the remote host of this user tracker
    • getUserAgent

      @AutoEscape String getUserAgent()
      Returns the user agent of this user tracker.
      Returns:
      the user agent of this user tracker
    • setUserAgent

      void setUserAgent(String userAgent)
      Sets the user agent of this user tracker.
      Parameters:
      userAgent - the user agent of this user tracker
    • cloneWithOriginalValues

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

      default String toXmlString()