Interface KaleoActionModel

All Superinterfaces:
com.liferay.portal.kernel.model.AuditedModel, com.liferay.portal.kernel.model.BaseModel<KaleoAction>, com.liferay.portal.kernel.model.ClassedModel, Cloneable, Comparable<KaleoAction>, com.liferay.portal.kernel.model.change.tracking.CTModel<KaleoAction>, com.liferay.portal.kernel.model.GroupedModel, com.liferay.portal.kernel.model.MVCCModel, Serializable, com.liferay.portal.kernel.model.ShardedModel
All Known Subinterfaces:
KaleoAction
All Known Implementing Classes:
KaleoActionWrapper

@ProviderType public interface KaleoActionModel extends com.liferay.portal.kernel.model.BaseModel<KaleoAction>, com.liferay.portal.kernel.model.change.tracking.CTModel<KaleoAction>, com.liferay.portal.kernel.model.GroupedModel, com.liferay.portal.kernel.model.MVCCModel, com.liferay.portal.kernel.model.ShardedModel
The base model interface for the KaleoAction service. Represents a row in the "KaleoAction" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation com.liferay.portal.workflow.kaleo.model.impl.KaleoActionModelImpl 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.workflow.kaleo.model.impl.KaleoActionImpl.

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the company ID of this kaleo action.
    Returns the create date of this kaleo action.
    long
    Returns the ct collection ID of this kaleo action.
    Returns the description of this kaleo action.
    Returns the execution type of this kaleo action.
    long
    Returns the group ID of this kaleo action.
    long
    Returns the kaleo action ID of this kaleo action.
    Returns the kaleo class name of this kaleo action.
    long
    Returns the kaleo class pk of this kaleo action.
    long
    Returns the kaleo definition ID of this kaleo action.
    long
    Returns the kaleo definition version ID of this kaleo action.
    Returns the kaleo node name of this kaleo action.
    Returns the modified date of this kaleo action.
    long
    Returns the mvcc version of this kaleo action.
    Returns the name of this kaleo action.
    long
    Returns the primary key of this kaleo action.
    int
    Returns the priority of this kaleo action.
    Returns the script of this kaleo action.
    Returns the script language of this kaleo action.
    Returns the script required contexts of this kaleo action.
    int
    Returns the status of this kaleo action.
    Returns the type of this kaleo action.
    long
    Returns the user ID of this kaleo action.
    Returns the user name of this kaleo action.
    Returns the user uuid of this kaleo action.
    void
    setCompanyId(long companyId)
    Sets the company ID of this kaleo action.
    void
    setCreateDate(Date createDate)
    Sets the create date of this kaleo action.
    void
    setCtCollectionId(long ctCollectionId)
    Sets the ct collection ID of this kaleo action.
    void
    setDescription(String description)
    Sets the description of this kaleo action.
    void
    setExecutionType(String executionType)
    Sets the execution type of this kaleo action.
    void
    setGroupId(long groupId)
    Sets the group ID of this kaleo action.
    void
    setKaleoActionId(long kaleoActionId)
    Sets the kaleo action ID of this kaleo action.
    void
    setKaleoClassName(String kaleoClassName)
    Sets the kaleo class name of this kaleo action.
    void
    setKaleoClassPK(long kaleoClassPK)
    Sets the kaleo class pk of this kaleo action.
    void
    setKaleoDefinitionId(long kaleoDefinitionId)
    Sets the kaleo definition ID of this kaleo action.
    void
    setKaleoDefinitionVersionId(long kaleoDefinitionVersionId)
    Sets the kaleo definition version ID of this kaleo action.
    void
    setKaleoNodeName(String kaleoNodeName)
    Sets the kaleo node name of this kaleo action.
    void
    setModifiedDate(Date modifiedDate)
    Sets the modified date of this kaleo action.
    void
    setMvccVersion(long mvccVersion)
    Sets the mvcc version of this kaleo action.
    void
    Sets the name of this kaleo action.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this kaleo action.
    void
    setPriority(int priority)
    Sets the priority of this kaleo action.
    void
    setScript(String script)
    Sets the script of this kaleo action.
    void
    setScriptLanguage(String scriptLanguage)
    Sets the script language of this kaleo action.
    void
    setScriptRequiredContexts(String scriptRequiredContexts)
    Sets the script required contexts of this kaleo action.
    void
    setStatus(int status)
    Sets the status of this kaleo action.
    void
    Sets the type of this kaleo action.
    void
    setUserId(long userId)
    Sets the user ID of this kaleo action.
    void
    setUserName(String userName)
    Sets the user name of this kaleo action.
    void
    setUserUuid(String userUuid)
    Sets the user uuid of this kaleo 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 kaleo action.
      Specified by:
      getPrimaryKey in interface com.liferay.portal.kernel.model.change.tracking.CTModel<KaleoAction>
      Returns:
      the primary key of this kaleo action
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this kaleo action.
      Specified by:
      setPrimaryKey in interface com.liferay.portal.kernel.model.change.tracking.CTModel<KaleoAction>
      Parameters:
      primaryKey - the primary key of this kaleo action
    • getMvccVersion

      long getMvccVersion()
      Returns the mvcc version of this kaleo action.
      Specified by:
      getMvccVersion in interface com.liferay.portal.kernel.model.MVCCModel
      Returns:
      the mvcc version of this kaleo action
    • setMvccVersion

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this kaleo action.
      Specified by:
      setMvccVersion in interface com.liferay.portal.kernel.model.MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this kaleo action
    • getCtCollectionId

      long getCtCollectionId()
      Returns the ct collection ID of this kaleo action.
      Specified by:
      getCtCollectionId in interface com.liferay.portal.kernel.model.change.tracking.CTModel<KaleoAction>
      Returns:
      the ct collection ID of this kaleo action
    • setCtCollectionId

      void setCtCollectionId(long ctCollectionId)
      Sets the ct collection ID of this kaleo action.
      Specified by:
      setCtCollectionId in interface com.liferay.portal.kernel.model.change.tracking.CTModel<KaleoAction>
      Parameters:
      ctCollectionId - the ct collection ID of this kaleo action
    • getKaleoActionId

      long getKaleoActionId()
      Returns the kaleo action ID of this kaleo action.
      Returns:
      the kaleo action ID of this kaleo action
    • setKaleoActionId

      void setKaleoActionId(long kaleoActionId)
      Sets the kaleo action ID of this kaleo action.
      Parameters:
      kaleoActionId - the kaleo action ID of this kaleo action
    • getGroupId

      long getGroupId()
      Returns the group ID of this kaleo action.
      Specified by:
      getGroupId in interface com.liferay.portal.kernel.model.GroupedModel
      Returns:
      the group ID of this kaleo action
    • setGroupId

      void setGroupId(long groupId)
      Sets the group ID of this kaleo action.
      Specified by:
      setGroupId in interface com.liferay.portal.kernel.model.GroupedModel
      Parameters:
      groupId - the group ID of this kaleo action
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this kaleo action.
      Specified by:
      getCompanyId in interface com.liferay.portal.kernel.model.AuditedModel
      Specified by:
      getCompanyId in interface com.liferay.portal.kernel.model.ShardedModel
      Returns:
      the company ID of this kaleo action
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this kaleo action.
      Specified by:
      setCompanyId in interface com.liferay.portal.kernel.model.AuditedModel
      Specified by:
      setCompanyId in interface com.liferay.portal.kernel.model.ShardedModel
      Parameters:
      companyId - the company ID of this kaleo action
    • getUserId

      long getUserId()
      Returns the user ID of this kaleo action.
      Specified by:
      getUserId in interface com.liferay.portal.kernel.model.AuditedModel
      Returns:
      the user ID of this kaleo action
    • setUserId

      void setUserId(long userId)
      Sets the user ID of this kaleo action.
      Specified by:
      setUserId in interface com.liferay.portal.kernel.model.AuditedModel
      Parameters:
      userId - the user ID of this kaleo action
    • getUserUuid

      String getUserUuid()
      Returns the user uuid of this kaleo action.
      Specified by:
      getUserUuid in interface com.liferay.portal.kernel.model.AuditedModel
      Returns:
      the user uuid of this kaleo action
    • setUserUuid

      void setUserUuid(String userUuid)
      Sets the user uuid of this kaleo action.
      Specified by:
      setUserUuid in interface com.liferay.portal.kernel.model.AuditedModel
      Parameters:
      userUuid - the user uuid of this kaleo action
    • getUserName

      @AutoEscape String getUserName()
      Returns the user name of this kaleo action.
      Specified by:
      getUserName in interface com.liferay.portal.kernel.model.AuditedModel
      Returns:
      the user name of this kaleo action
    • setUserName

      void setUserName(String userName)
      Sets the user name of this kaleo action.
      Specified by:
      setUserName in interface com.liferay.portal.kernel.model.AuditedModel
      Parameters:
      userName - the user name of this kaleo action
    • getCreateDate

      Date getCreateDate()
      Returns the create date of this kaleo action.
      Specified by:
      getCreateDate in interface com.liferay.portal.kernel.model.AuditedModel
      Returns:
      the create date of this kaleo action
    • setCreateDate

      void setCreateDate(Date createDate)
      Sets the create date of this kaleo action.
      Specified by:
      setCreateDate in interface com.liferay.portal.kernel.model.AuditedModel
      Parameters:
      createDate - the create date of this kaleo action
    • getModifiedDate

      Date getModifiedDate()
      Returns the modified date of this kaleo action.
      Specified by:
      getModifiedDate in interface com.liferay.portal.kernel.model.AuditedModel
      Returns:
      the modified date of this kaleo action
    • setModifiedDate

      void setModifiedDate(Date modifiedDate)
      Sets the modified date of this kaleo action.
      Specified by:
      setModifiedDate in interface com.liferay.portal.kernel.model.AuditedModel
      Parameters:
      modifiedDate - the modified date of this kaleo action
    • getKaleoClassName

      @AutoEscape String getKaleoClassName()
      Returns the kaleo class name of this kaleo action.
      Returns:
      the kaleo class name of this kaleo action
    • setKaleoClassName

      void setKaleoClassName(String kaleoClassName)
      Sets the kaleo class name of this kaleo action.
      Parameters:
      kaleoClassName - the kaleo class name of this kaleo action
    • getKaleoClassPK

      long getKaleoClassPK()
      Returns the kaleo class pk of this kaleo action.
      Returns:
      the kaleo class pk of this kaleo action
    • setKaleoClassPK

      void setKaleoClassPK(long kaleoClassPK)
      Sets the kaleo class pk of this kaleo action.
      Parameters:
      kaleoClassPK - the kaleo class pk of this kaleo action
    • getKaleoDefinitionId

      long getKaleoDefinitionId()
      Returns the kaleo definition ID of this kaleo action.
      Returns:
      the kaleo definition ID of this kaleo action
    • setKaleoDefinitionId

      void setKaleoDefinitionId(long kaleoDefinitionId)
      Sets the kaleo definition ID of this kaleo action.
      Parameters:
      kaleoDefinitionId - the kaleo definition ID of this kaleo action
    • getKaleoDefinitionVersionId

      long getKaleoDefinitionVersionId()
      Returns the kaleo definition version ID of this kaleo action.
      Returns:
      the kaleo definition version ID of this kaleo action
    • setKaleoDefinitionVersionId

      void setKaleoDefinitionVersionId(long kaleoDefinitionVersionId)
      Sets the kaleo definition version ID of this kaleo action.
      Parameters:
      kaleoDefinitionVersionId - the kaleo definition version ID of this kaleo action
    • getKaleoNodeName

      @AutoEscape String getKaleoNodeName()
      Returns the kaleo node name of this kaleo action.
      Returns:
      the kaleo node name of this kaleo action
    • setKaleoNodeName

      void setKaleoNodeName(String kaleoNodeName)
      Sets the kaleo node name of this kaleo action.
      Parameters:
      kaleoNodeName - the kaleo node name of this kaleo action
    • getName

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

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

      @AutoEscape String getDescription()
      Returns the description of this kaleo action.
      Returns:
      the description of this kaleo action
    • setDescription

      void setDescription(String description)
      Sets the description of this kaleo action.
      Parameters:
      description - the description of this kaleo action
    • getExecutionType

      @AutoEscape String getExecutionType()
      Returns the execution type of this kaleo action.
      Returns:
      the execution type of this kaleo action
    • setExecutionType

      void setExecutionType(String executionType)
      Sets the execution type of this kaleo action.
      Parameters:
      executionType - the execution type of this kaleo action
    • getScript

      @AutoEscape String getScript()
      Returns the script of this kaleo action.
      Returns:
      the script of this kaleo action
    • setScript

      void setScript(String script)
      Sets the script of this kaleo action.
      Parameters:
      script - the script of this kaleo action
    • getScriptLanguage

      @AutoEscape String getScriptLanguage()
      Returns the script language of this kaleo action.
      Returns:
      the script language of this kaleo action
    • setScriptLanguage

      void setScriptLanguage(String scriptLanguage)
      Sets the script language of this kaleo action.
      Parameters:
      scriptLanguage - the script language of this kaleo action
    • getScriptRequiredContexts

      @AutoEscape String getScriptRequiredContexts()
      Returns the script required contexts of this kaleo action.
      Returns:
      the script required contexts of this kaleo action
    • setScriptRequiredContexts

      void setScriptRequiredContexts(String scriptRequiredContexts)
      Sets the script required contexts of this kaleo action.
      Parameters:
      scriptRequiredContexts - the script required contexts of this kaleo action
    • getPriority

      int getPriority()
      Returns the priority of this kaleo action.
      Returns:
      the priority of this kaleo action
    • setPriority

      void setPriority(int priority)
      Sets the priority of this kaleo action.
      Parameters:
      priority - the priority of this kaleo action
    • getType

      @AutoEscape String getType()
      Returns the type of this kaleo action.
      Returns:
      the type of this kaleo action
    • setType

      void setType(String type)
      Sets the type of this kaleo action.
      Parameters:
      type - the type of this kaleo action
    • getStatus

      int getStatus()
      Returns the status of this kaleo action.
      Returns:
      the status of this kaleo action
    • setStatus

      void setStatus(int status)
      Sets the status of this kaleo action.
      Parameters:
      status - the status of this kaleo action
    • cloneWithOriginalValues

      KaleoAction cloneWithOriginalValues()
      Specified by:
      cloneWithOriginalValues in interface com.liferay.portal.kernel.model.BaseModel<KaleoAction>
    • toXmlString

      default String toXmlString()