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 TypeMethodDescriptionlongReturns the company ID of this user tracker.Returns the modified date of this user tracker.longReturns the mvcc version of this user tracker.longReturns 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.longReturns the user ID of this user tracker.longReturns the user tracker ID of this user tracker.Returns the user uuid of this user tracker.voidsetCompanyId(long companyId) Sets the company ID of this user tracker.voidsetModifiedDate(Date modifiedDate) Sets the modified date of this user tracker.voidsetMvccVersion(long mvccVersion) Sets the mvcc version of this user tracker.voidsetPrimaryKey(long primaryKey) Sets the primary key of this user tracker.voidsetRemoteAddr(String remoteAddr) Sets the remote addr of this user tracker.voidsetRemoteHost(String remoteHost) Sets the remote host of this user tracker.voidsetSessionId(String sessionId) Sets the session ID of this user tracker.voidsetUserAgent(String userAgent) Sets the user agent of this user tracker.voidsetUserId(long userId) Sets the user ID of this user tracker.voidsetUserTrackerId(long userTrackerId) Sets the user tracker ID of this user tracker.voidsetUserUuid(String userUuid) Sets the user uuid of this user tracker.default StringMethods 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, toUnescapedModelMethods inherited from interface com.liferay.portal.kernel.model.ClassedModel
getModelClass, getModelClassNameMethods 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:
getMvccVersionin interfaceMVCCModel- Returns:
- the mvcc version of this user tracker
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this user tracker.- Specified by:
setMvccVersionin 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:
getCompanyIdin interfaceShardedModel- Returns:
- the company ID of this user tracker
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this user tracker.- Specified by:
setCompanyIdin 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:
cloneWithOriginalValuesin interfaceBaseModel<UserTracker>
-
toXmlString
-