Interface ResourceActionModel

All Superinterfaces:
BaseModel<ResourceAction>, ClassedModel, Cloneable, Comparable<ResourceAction>, MVCCModel, Serializable
All Known Subinterfaces:
ResourceAction
All Known Implementing Classes:
ResourceActionWrapper

@ProviderType public interface ResourceActionModel extends BaseModel<ResourceAction>, MVCCModel
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 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 interface MVCCModel
      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 interface MVCCModel
      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

      @AutoEscape String getName()
      Returns the name of this resource action.
      Returns:
      the name of this resource action
    • setName

      void setName(String name)
      Sets the name of this resource action.
      Parameters:
      name - the name of this resource action
    • getActionId

      @AutoEscape String getActionId()
      Returns the action ID of this resource action.
      Returns:
      the action ID of this resource action
    • setActionId

      void setActionId(String actionId)
      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 interface BaseModel<ResourceAction>
    • toXmlString

      default String toXmlString()