Liferay 6.2-ce-ga5

com.liferay.portal.model
Interface SystemEventModel

All Superinterfaces:
AttachedModel, BaseModel<SystemEvent>, ClassedModel, Cloneable, Comparable<SystemEvent>, Serializable, TypedModel
All Known Subinterfaces:
SystemEvent
All Known Implementing Classes:
SystemEventWrapper

@ProviderType
public interface SystemEventModel
extends AttachedModel, BaseModel<SystemEvent>

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 SystemEventModelImpl exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in SystemEventImpl.

See Also:
SystemEvent, SystemEventImpl, SystemEventModelImpl

Method Summary
 Object clone()
          Creates a shallow clone of this model instance.
 int compareTo(SystemEvent systemEvent)
           
 String getClassName()
          Returns the fully qualified class name of this system event.
 long getClassNameId()
          Returns the class name ID of this system event.
 long getClassPK()
          Returns the class p k of this system event.
 String getClassUuid()
          Returns the class uuid of this system event.
 long getCompanyId()
          Returns the company ID of this system event.
 Date getCreateDate()
          Returns the create date of this system event.
 ExpandoBridge getExpandoBridge()
          Returns the expando bridge for this model instance.
 String getExtraData()
          Returns the extra data of this system event.
 long getGroupId()
          Returns the group ID of this system event.
 long getParentSystemEventId()
          Returns the parent system event ID of this system event.
 long getPrimaryKey()
          Returns the primary key of this system event.
 Serializable getPrimaryKeyObj()
          Returns the primary key of this model instance.
 long getReferrerClassNameId()
          Returns the referrer class name ID of this system event.
 long getSystemEventId()
          Returns the system event ID of this system event.
 long getSystemEventSetKey()
          Returns the system event set key of this system event.
 int getType()
          Returns the type of this system event.
 long getUserId()
          Returns the user ID of this system event.
 String getUserName()
          Returns the user name of this system event.
 String getUserUuid()
          Returns the user uuid of this system event.
 int hashCode()
           
 boolean isCachedModel()
          Returns true if this model instance was retrieved from the entity cache.
 boolean isEscapedModel()
          Returns true if this model instance is escaped.
 boolean isNew()
          Returns true if this model instance does not yet exist in the database.
 void setCachedModel(boolean cachedModel)
          Sets whether this model instance was retrieved from the entity cache.
 void setClassName(String className)
           
 void setClassNameId(long classNameId)
          Sets the class name ID of this system event.
 void setClassPK(long classPK)
          Sets the class p k 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 setExpandoBridgeAttributes(BaseModel<?> baseModel)
           
 void setExpandoBridgeAttributes(ExpandoBridge expandoBridge)
           
 void setExpandoBridgeAttributes(ServiceContext serviceContext)
          Sets the expando bridge attributes for this model instance to the attributes stored in the service context.
 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 setNew(boolean n)
          Sets whether this model instance does not yet exist in the database.
 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 setPrimaryKeyObj(Serializable primaryKeyObj)
          Sets the primary key of this model instance.
 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.
 CacheModel<SystemEvent> toCacheModel()
          Returns a cache model object for this entity used by entity cache.
 SystemEvent toEscapedModel()
          Returns a copy of this entity as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.
 String toString()
           
 SystemEvent toUnescapedModel()
           
 String toXmlString()
          Returns the XML representation of this model instance.
 
Methods inherited from interface com.liferay.portal.model.BaseModel
getModelAttributes, resetOriginalValues, setModelAttributes
 
Methods inherited from interface com.liferay.portal.model.ClassedModel
getModelClass, getModelClassName
 

Method Detail

getPrimaryKey

long getPrimaryKey()
Returns the primary key of this system event.

Returns:
the primary key of this system event

setPrimaryKey

void setPrimaryKey(long primaryKey)
Sets the primary key of this system event.

Parameters:
primaryKey - the primary key 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.

Returns:
the company ID of this system event

setCompanyId

void setCompanyId(long companyId)
Sets the company ID of this system event.

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()
                   throws SystemException
Returns the user uuid of this system event.

Returns:
the user uuid of this system event
Throws:
SystemException - if a system exception occurred

setUserUuid

void setUserUuid(String userUuid)
Sets the user uuid of this system event.

Parameters:
userUuid - the user uuid of this system event

getUserName

@AutoEscape
String getUserName()
Returns the user name of this system event.

Returns:
the user name of this system event

setUserName

void setUserName(String userName)
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

void setCreateDate(Date createDate)
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 interface TypedModel
Returns:
the fully qualified class name of this system event

setClassName

void setClassName(String className)

getClassNameId

long getClassNameId()
Returns the class name ID of this system event.

Specified by:
getClassNameId in interface TypedModel
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 interface TypedModel
Parameters:
classNameId - the class name ID of this system event

getClassPK

long getClassPK()
Returns the class p k of this system event.

Specified by:
getClassPK in interface AttachedModel
Returns:
the class p k of this system event

setClassPK

void setClassPK(long classPK)
Sets the class p k of this system event.

Specified by:
setClassPK in interface AttachedModel
Parameters:
classPK - the class p k of this system event

getClassUuid

@AutoEscape
String getClassUuid()
Returns the class uuid of this system event.

Returns:
the class uuid of this system event

setClassUuid

void setClassUuid(String classUuid)
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

@AutoEscape
String getExtraData()
Returns the extra data of this system event.

Returns:
the extra data of this system event

setExtraData

void setExtraData(String extraData)
Sets the extra data of this system event.

Parameters:
extraData - the extra data of this system event

isNew

boolean isNew()
Description copied from interface: BaseModel
Returns true if this model instance does not yet exist in the database.

Specified by:
isNew in interface BaseModel<SystemEvent>
Returns:
true if this model instance does not yet exist in the database; false otherwise

setNew

void setNew(boolean n)
Description copied from interface: BaseModel
Sets whether this model instance does not yet exist in the database.

Specified by:
setNew in interface BaseModel<SystemEvent>
Parameters:
n - whether this model instance does not yet exist in the database

isCachedModel

boolean isCachedModel()
Description copied from interface: BaseModel
Returns true if this model instance was retrieved from the entity cache.

Specified by:
isCachedModel in interface BaseModel<SystemEvent>
Returns:
true if this model instance was retrieved from the entity cache; false otherwise
See Also:
BaseModel.setCachedModel(boolean)

setCachedModel

void setCachedModel(boolean cachedModel)
Description copied from interface: BaseModel
Sets whether this model instance was retrieved from the entity cache.

Specified by:
setCachedModel in interface BaseModel<SystemEvent>
Parameters:
cachedModel - whether this model instance was retrieved from the entity cache
See Also:
EntityCache

isEscapedModel

boolean isEscapedModel()
Description copied from interface: BaseModel
Returns true if this model instance is escaped.

Specified by:
isEscapedModel in interface BaseModel<SystemEvent>
Returns:
true if this model instance is escaped; false otherwise

getPrimaryKeyObj

Serializable getPrimaryKeyObj()
Description copied from interface: BaseModel
Returns the primary key of this model instance.

Specified by:
getPrimaryKeyObj in interface BaseModel<SystemEvent>
Specified by:
getPrimaryKeyObj in interface ClassedModel
Returns:
the primary key of this model instance

setPrimaryKeyObj

void setPrimaryKeyObj(Serializable primaryKeyObj)
Description copied from interface: BaseModel
Sets the primary key of this model instance.

Specified by:
setPrimaryKeyObj in interface BaseModel<SystemEvent>
Specified by:
setPrimaryKeyObj in interface ClassedModel
Parameters:
primaryKeyObj - the primary key of this model instance

getExpandoBridge

ExpandoBridge getExpandoBridge()
Description copied from interface: BaseModel
Returns the expando bridge for this model instance.

Specified by:
getExpandoBridge in interface BaseModel<SystemEvent>
Specified by:
getExpandoBridge in interface ClassedModel
Returns:
the expando bridge for this model instance

setExpandoBridgeAttributes

void setExpandoBridgeAttributes(BaseModel<?> baseModel)
Specified by:
setExpandoBridgeAttributes in interface BaseModel<SystemEvent>

setExpandoBridgeAttributes

void setExpandoBridgeAttributes(ExpandoBridge expandoBridge)
Specified by:
setExpandoBridgeAttributes in interface BaseModel<SystemEvent>

setExpandoBridgeAttributes

void setExpandoBridgeAttributes(ServiceContext serviceContext)
Description copied from interface: BaseModel
Sets the expando bridge attributes for this model instance to the attributes stored in the service context.

Specified by:
setExpandoBridgeAttributes in interface BaseModel<SystemEvent>
Parameters:
serviceContext - the service context to be applied
See Also:
ServiceContext.getExpandoBridgeAttributes( )

clone

Object clone()
Description copied from interface: BaseModel
Creates a shallow clone of this model instance.

Specified by:
clone in interface BaseModel<SystemEvent>
Returns:
the shallow clone of this model instance

compareTo

int compareTo(SystemEvent systemEvent)
Specified by:
compareTo in interface Comparable<SystemEvent>

hashCode

int hashCode()
Overrides:
hashCode in class Object

toCacheModel

CacheModel<SystemEvent> toCacheModel()
Description copied from interface: BaseModel
Returns a cache model object for this entity used by entity cache.

Specified by:
toCacheModel in interface BaseModel<SystemEvent>
Returns:
the cache model object

toEscapedModel

SystemEvent toEscapedModel()
Description copied from interface: BaseModel
Returns a copy of this entity as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.

Specified by:
toEscapedModel in interface BaseModel<SystemEvent>
Returns:
the escaped model instance
See Also:
AutoEscapeBeanHandler

toUnescapedModel

SystemEvent toUnescapedModel()
Specified by:
toUnescapedModel in interface BaseModel<SystemEvent>

toString

String toString()
Overrides:
toString in class Object

toXmlString

String toXmlString()
Description copied from interface: BaseModel
Returns the XML representation of this model instance.

Specified by:
toXmlString in interface BaseModel<SystemEvent>
Returns:
the XML representation of this model instance

Liferay 6.2-ce-ga5