Package com.liferay.portal.kernel.model
Interface ResourceActionModel
- All Superinterfaces:
BaseModel<ResourceAction>
,ClassedModel
,Cloneable
,Comparable<ResourceAction>
,MVCCModel
,Serializable
- All Known Subinterfaces:
ResourceAction
- All Known Implementing Classes:
ResourceActionWrapper
The base model interface for the ResourceAction service. Represents a row in the "ResourceAction" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portal.model.impl.ResourceActionModelImpl
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.ResourceActionImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionReturns the action ID of this resource action.long
Returns the bitwise value of this resource action.long
Returns the mvcc version of this resource action.getName()
Returns the name of this resource action.long
Returns the primary key of this resource action.long
Returns the resource action ID of this resource action.void
setActionId
(String actionId) Sets the action ID of this resource action.void
setBitwiseValue
(long bitwiseValue) Sets the bitwise value of this resource action.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this resource action.void
Sets the name of this resource action.void
setPrimaryKey
(long primaryKey) Sets the primary key of this resource action.void
setResourceActionId
(long resourceActionId) Sets the resource action ID of this resource action.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 resource action.- Returns:
- the primary key of this resource action
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this resource action.- Parameters:
primaryKey
- the primary key of this resource action
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this resource action.- Specified by:
getMvccVersion
in interfaceMVCCModel
- Returns:
- the mvcc version of this resource action
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this resource action.- Specified by:
setMvccVersion
in interfaceMVCCModel
- Parameters:
mvccVersion
- the mvcc version of this resource action
-
getResourceActionId
long getResourceActionId()Returns the resource action ID of this resource action.- Returns:
- the resource action ID of this resource action
-
setResourceActionId
void setResourceActionId(long resourceActionId) Sets the resource action ID of this resource action.- Parameters:
resourceActionId
- the resource action ID of this resource action
-
getName
Returns the name of this resource action.- Returns:
- the name of this resource action
-
setName
Sets the name of this resource action.- Parameters:
name
- the name of this resource action
-
getActionId
Returns the action ID of this resource action.- Returns:
- the action ID of this resource action
-
setActionId
Sets the action ID of this resource action.- Parameters:
actionId
- the action ID of this resource action
-
getBitwiseValue
long getBitwiseValue()Returns the bitwise value of this resource action.- Returns:
- the bitwise value of this resource action
-
setBitwiseValue
void setBitwiseValue(long bitwiseValue) Sets the bitwise value of this resource action.- Parameters:
bitwiseValue
- the bitwise value of this resource action
-
cloneWithOriginalValues
ResourceAction cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfaceBaseModel<ResourceAction>
-
toXmlString
-