Package com.liferay.portal.kernel.model
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 Summary
Modifier and TypeMethodDescriptionlong
Returns the browser key of this browser tracker.long
Returns the browser tracker ID of this browser tracker.long
Returns the company ID of this browser tracker.long
Returns the mvcc version of this browser tracker.long
Returns the primary key of this browser tracker.long
Returns the user ID of this browser tracker.Returns the user uuid of this browser tracker.void
setBrowserKey
(long browserKey) Sets the browser key of this browser tracker.void
setBrowserTrackerId
(long browserTrackerId) Sets the browser tracker ID of this browser tracker.void
setCompanyId
(long companyId) Sets the company ID of this browser tracker.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this browser tracker.void
setPrimaryKey
(long primaryKey) Sets the primary key of this browser tracker.void
setUserId
(long userId) Sets the user ID of this browser tracker.void
setUserUuid
(String userUuid) Sets the user uuid of this browser tracker.default String
Methods 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, toUnescapedModel
Methods inherited from interface com.liferay.portal.kernel.model.ClassedModel
getModelClass, getModelClassName
Methods inherited from interface java.lang.Comparable
compareTo
-
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 interfaceMVCCModel
- 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 interfaceMVCCModel
- 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 interfaceShardedModel
- 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 interfaceShardedModel
- 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
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 interfaceBaseModel<BrowserTracker>
-
toXmlString
-