Package com.liferay.portal.kernel.model
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 Summary
Modifier and TypeMethodDescriptionlong
Returns the company ID of this user tracker.Returns the modified date of this user tracker.long
Returns the mvcc version of this user tracker.long
Returns the primary key of this user tracker.Returns the remote addr of this user tracker.Returns the remote host of this user tracker.Returns the session ID of this user tracker.Returns the user agent of this user tracker.long
Returns the user ID of this user tracker.long
Returns the user tracker ID of this user tracker.Returns the user uuid of this user tracker.void
setCompanyId
(long companyId) Sets the company ID of this user tracker.void
setModifiedDate
(Date modifiedDate) Sets the modified date of this user tracker.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this user tracker.void
setPrimaryKey
(long primaryKey) Sets the primary key of this user tracker.void
setRemoteAddr
(String remoteAddr) Sets the remote addr of this user tracker.void
setRemoteHost
(String remoteHost) Sets the remote host of this user tracker.void
setSessionId
(String sessionId) Sets the session ID of this user tracker.void
setUserAgent
(String userAgent) Sets the user agent of this user tracker.void
setUserId
(long userId) Sets the user ID of this user tracker.void
setUserTrackerId
(long userTrackerId) Sets the user tracker ID of this user tracker.void
setUserUuid
(String userUuid) Sets the user uuid of this user 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 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 interfaceMVCCModel
- 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 interfaceMVCCModel
- 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 interfaceShardedModel
- 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 interfaceShardedModel
- 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
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
Sets the modified date of this user tracker.- Parameters:
modifiedDate
- the modified date of this user tracker
-
getSessionId
Returns the session ID of this user tracker.- Returns:
- the session ID of this user tracker
-
setSessionId
Sets the session ID of this user tracker.- Parameters:
sessionId
- the session ID of this user tracker
-
getRemoteAddr
Returns the remote addr of this user tracker.- Returns:
- the remote addr of this user tracker
-
setRemoteAddr
Sets the remote addr of this user tracker.- Parameters:
remoteAddr
- the remote addr of this user tracker
-
getRemoteHost
Returns the remote host of this user tracker.- Returns:
- the remote host of this user tracker
-
setRemoteHost
Sets the remote host of this user tracker.- Parameters:
remoteHost
- the remote host of this user tracker
-
getUserAgent
Returns the user agent of this user tracker.- Returns:
- the user agent of this user tracker
-
setUserAgent
Sets the user agent of this user tracker.- Parameters:
userAgent
- the user agent of this user tracker
-
cloneWithOriginalValues
UserTracker cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfaceBaseModel<UserTracker>
-
toXmlString
-