Interface UserTrackerPathModel

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

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

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

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

    • getPrimaryKey

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

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

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

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

      long getUserTrackerPathId()
      Returns the user tracker path ID of this user tracker path.
      Returns:
      the user tracker path ID of this user tracker path
    • setUserTrackerPathId

      void setUserTrackerPathId(long userTrackerPathId)
      Sets the user tracker path ID of this user tracker path.
      Parameters:
      userTrackerPathId - the user tracker path ID of this user tracker path
    • getCompanyId

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

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

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

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

      @AutoEscape String getPath()
      Returns the path of this user tracker path.
      Returns:
      the path of this user tracker path
    • setPath

      void setPath(String path)
      Sets the path of this user tracker path.
      Parameters:
      path - the path of this user tracker path
    • getPathDate

      Date getPathDate()
      Returns the path date of this user tracker path.
      Returns:
      the path date of this user tracker path
    • setPathDate

      void setPathDate(Date pathDate)
      Sets the path date of this user tracker path.
      Parameters:
      pathDate - the path date of this user tracker path
    • cloneWithOriginalValues

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

      default String toXmlString()