Package com.liferay.portal.kernel.model
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 Summary
Modifier and TypeMethodDescriptionlong
Returns the company ID of this user tracker path.long
Returns the mvcc version of this user tracker path.getPath()
Returns the path of this user tracker path.Returns the path date of this user tracker path.long
Returns the primary key of this user tracker path.long
Returns the user tracker ID of this user tracker path.long
Returns the user tracker path ID of this user tracker path.void
setCompanyId
(long companyId) Sets the company ID of this user tracker path.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this user tracker path.void
Sets the path of this user tracker path.void
setPathDate
(Date pathDate) Sets the path date of this user tracker path.void
setPrimaryKey
(long primaryKey) Sets the primary key of this user tracker path.void
setUserTrackerId
(long userTrackerId) Sets the user tracker ID of this user tracker path.void
setUserTrackerPathId
(long userTrackerPathId) Sets the user tracker path ID of this user tracker path.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 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 interfaceMVCCModel
- 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 interfaceMVCCModel
- 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 interfaceShardedModel
- 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 interfaceShardedModel
- 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
Returns the path of this user tracker path.- Returns:
- the path of this user tracker path
-
setPath
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
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 interfaceBaseModel<UserTrackerPath>
-
toXmlString
-