Package com.liferay.portal.kernel.model
Interface SystemEventModel
- All Superinterfaces:
AttachedModel
,BaseModel<SystemEvent>
,ClassedModel
,Cloneable
,Comparable<SystemEvent>
,CTModel<SystemEvent>
,MVCCModel
,Serializable
,ShardedModel
,TypedModel
- All Known Subinterfaces:
SystemEvent
- All Known Implementing Classes:
SystemEventWrapper
@ProviderType
public interface SystemEventModel
extends AttachedModel, BaseModel<SystemEvent>, CTModel<SystemEvent>, MVCCModel, ShardedModel
The base model interface for the SystemEvent service. Represents a row in the "SystemEvent" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portal.model.impl.SystemEventModelImpl
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.SystemEventImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionReturns the fully qualified class name of this system event.long
Returns the class name ID of this system event.long
Returns the class pk of this system event.Returns the class uuid of this system event.long
Returns the company ID of this system event.Returns the create date of this system event.long
Returns the ct collection ID of this system event.Returns the extra data of this system event.long
Returns the group ID of this system event.long
Returns the mvcc version of this system event.long
Returns the parent system event ID of this system event.long
Returns the primary key of this system event.long
Returns the referrer class name ID of this system event.long
Returns the system event ID of this system event.long
Returns the system event set key of this system event.int
getType()
Returns the type of this system event.long
Returns the user ID of this system event.Returns the user name of this system event.Returns the user uuid of this system event.void
setClassName
(String className) void
setClassNameId
(long classNameId) Sets the class name ID of this system event.void
setClassPK
(long classPK) Sets the class pk of this system event.void
setClassUuid
(String classUuid) Sets the class uuid of this system event.void
setCompanyId
(long companyId) Sets the company ID of this system event.void
setCreateDate
(Date createDate) Sets the create date of this system event.void
setCtCollectionId
(long ctCollectionId) Sets the ct collection ID of this system event.void
setExtraData
(String extraData) Sets the extra data of this system event.void
setGroupId
(long groupId) Sets the group ID of this system event.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this system event.void
setParentSystemEventId
(long parentSystemEventId) Sets the parent system event ID of this system event.void
setPrimaryKey
(long primaryKey) Sets the primary key of this system event.void
setReferrerClassNameId
(long referrerClassNameId) Sets the referrer class name ID of this system event.void
setSystemEventId
(long systemEventId) Sets the system event ID of this system event.void
setSystemEventSetKey
(long systemEventSetKey) Sets the system event set key of this system event.void
setType
(int type) Sets the type of this system event.void
setUserId
(long userId) Sets the user ID of this system event.void
setUserName
(String userName) Sets the user name of this system event.void
setUserUuid
(String userUuid) Sets the user uuid of this system event.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 system event.- Specified by:
getPrimaryKey
in interfaceCTModel<SystemEvent>
- Returns:
- the primary key of this system event
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this system event.- Specified by:
setPrimaryKey
in interfaceCTModel<SystemEvent>
- Parameters:
primaryKey
- the primary key of this system event
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this system event.- Specified by:
getMvccVersion
in interfaceMVCCModel
- Returns:
- the mvcc version of this system event
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this system event.- Specified by:
setMvccVersion
in interfaceMVCCModel
- Parameters:
mvccVersion
- the mvcc version of this system event
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this system event.- Specified by:
getCtCollectionId
in interfaceCTModel<SystemEvent>
- Returns:
- the ct collection ID of this system event
-
setCtCollectionId
void setCtCollectionId(long ctCollectionId) Sets the ct collection ID of this system event.- Specified by:
setCtCollectionId
in interfaceCTModel<SystemEvent>
- Parameters:
ctCollectionId
- the ct collection ID of this system event
-
getSystemEventId
long getSystemEventId()Returns the system event ID of this system event.- Returns:
- the system event ID of this system event
-
setSystemEventId
void setSystemEventId(long systemEventId) Sets the system event ID of this system event.- Parameters:
systemEventId
- the system event ID of this system event
-
getGroupId
long getGroupId()Returns the group ID of this system event.- Returns:
- the group ID of this system event
-
setGroupId
void setGroupId(long groupId) Sets the group ID of this system event.- Parameters:
groupId
- the group ID of this system event
-
getCompanyId
long getCompanyId()Returns the company ID of this system event.- Specified by:
getCompanyId
in interfaceShardedModel
- Returns:
- the company ID of this system event
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this system event.- Specified by:
setCompanyId
in interfaceShardedModel
- Parameters:
companyId
- the company ID of this system event
-
getUserId
long getUserId()Returns the user ID of this system event.- Returns:
- the user ID of this system event
-
setUserId
void setUserId(long userId) Sets the user ID of this system event.- Parameters:
userId
- the user ID of this system event
-
getUserUuid
String getUserUuid()Returns the user uuid of this system event.- Returns:
- the user uuid of this system event
-
setUserUuid
Sets the user uuid of this system event.- Parameters:
userUuid
- the user uuid of this system event
-
getUserName
Returns the user name of this system event.- Returns:
- the user name of this system event
-
setUserName
Sets the user name of this system event.- Parameters:
userName
- the user name of this system event
-
getCreateDate
Date getCreateDate()Returns the create date of this system event.- Returns:
- the create date of this system event
-
setCreateDate
Sets the create date of this system event.- Parameters:
createDate
- the create date of this system event
-
getClassName
String getClassName()Returns the fully qualified class name of this system event.- Specified by:
getClassName
in interfaceTypedModel
- Returns:
- the fully qualified class name of this system event
-
setClassName
-
getClassNameId
long getClassNameId()Returns the class name ID of this system event.- Specified by:
getClassNameId
in interfaceTypedModel
- Returns:
- the class name ID of this system event
-
setClassNameId
void setClassNameId(long classNameId) Sets the class name ID of this system event.- Specified by:
setClassNameId
in interfaceTypedModel
- Parameters:
classNameId
- the class name ID of this system event
-
getClassPK
long getClassPK()Returns the class pk of this system event.- Specified by:
getClassPK
in interfaceAttachedModel
- Returns:
- the class pk of this system event
-
setClassPK
void setClassPK(long classPK) Sets the class pk of this system event.- Specified by:
setClassPK
in interfaceAttachedModel
- Parameters:
classPK
- the class pk of this system event
-
getClassUuid
Returns the class uuid of this system event.- Returns:
- the class uuid of this system event
-
setClassUuid
Sets the class uuid of this system event.- Parameters:
classUuid
- the class uuid of this system event
-
getReferrerClassNameId
long getReferrerClassNameId()Returns the referrer class name ID of this system event.- Returns:
- the referrer class name ID of this system event
-
setReferrerClassNameId
void setReferrerClassNameId(long referrerClassNameId) Sets the referrer class name ID of this system event.- Parameters:
referrerClassNameId
- the referrer class name ID of this system event
-
getParentSystemEventId
long getParentSystemEventId()Returns the parent system event ID of this system event.- Returns:
- the parent system event ID of this system event
-
setParentSystemEventId
void setParentSystemEventId(long parentSystemEventId) Sets the parent system event ID of this system event.- Parameters:
parentSystemEventId
- the parent system event ID of this system event
-
getSystemEventSetKey
long getSystemEventSetKey()Returns the system event set key of this system event.- Returns:
- the system event set key of this system event
-
setSystemEventSetKey
void setSystemEventSetKey(long systemEventSetKey) Sets the system event set key of this system event.- Parameters:
systemEventSetKey
- the system event set key of this system event
-
getType
int getType()Returns the type of this system event.- Returns:
- the type of this system event
-
setType
void setType(int type) Sets the type of this system event.- Parameters:
type
- the type of this system event
-
getExtraData
Returns the extra data of this system event.- Returns:
- the extra data of this system event
-
setExtraData
Sets the extra data of this system event.- Parameters:
extraData
- the extra data of this system event
-
cloneWithOriginalValues
SystemEvent cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfaceBaseModel<SystemEvent>
-
toXmlString
-