Interface BrowserTrackerModel

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

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

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

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

    • getPrimaryKey

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

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

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

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

      long getBrowserTrackerId()
      Returns the browser tracker ID of this browser tracker.
      Returns:
      the browser tracker ID of this browser tracker
    • setBrowserTrackerId

      void setBrowserTrackerId(long browserTrackerId)
      Sets the browser tracker ID of this browser tracker.
      Parameters:
      browserTrackerId - the browser tracker ID of this browser tracker
    • getCompanyId

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

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

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

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

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

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

      long getBrowserKey()
      Returns the browser key of this browser tracker.
      Returns:
      the browser key of this browser tracker
    • setBrowserKey

      void setBrowserKey(long browserKey)
      Sets the browser key of this browser tracker.
      Parameters:
      browserKey - the browser key of this browser tracker
    • cloneWithOriginalValues

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

      default String toXmlString()