Interface KaleoProcessLinkModel

All Superinterfaces:
com.liferay.portal.kernel.model.BaseModel<KaleoProcessLink>, com.liferay.portal.kernel.model.ClassedModel, Cloneable, Comparable<KaleoProcessLink>, Serializable, com.liferay.portal.kernel.model.ShardedModel
All Known Subinterfaces:
KaleoProcessLink
All Known Implementing Classes:
KaleoProcessLinkWrapper

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

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

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the company ID of this kaleo process link.
    long
    Returns the ddm template ID of this kaleo process link.
    long
    Returns the kaleo process ID of this kaleo process link.
    long
    Returns the kaleo process link ID of this kaleo process link.
    long
    Returns the primary key of this kaleo process link.
    Returns the workflow task name of this kaleo process link.
    void
    setCompanyId(long companyId)
    Sets the company ID of this kaleo process link.
    void
    setDDMTemplateId(long DDMTemplateId)
    Sets the ddm template ID of this kaleo process link.
    void
    setKaleoProcessId(long kaleoProcessId)
    Sets the kaleo process ID of this kaleo process link.
    void
    setKaleoProcessLinkId(long kaleoProcessLinkId)
    Sets the kaleo process link ID of this kaleo process link.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this kaleo process link.
    void
    setWorkflowTaskName(String workflowTaskName)
    Sets the workflow task name of this kaleo process link.
    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 process link.
      Returns:
      the primary key of this kaleo process link
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this kaleo process link.
      Parameters:
      primaryKey - the primary key of this kaleo process link
    • getKaleoProcessLinkId

      long getKaleoProcessLinkId()
      Returns the kaleo process link ID of this kaleo process link.
      Returns:
      the kaleo process link ID of this kaleo process link
    • setKaleoProcessLinkId

      void setKaleoProcessLinkId(long kaleoProcessLinkId)
      Sets the kaleo process link ID of this kaleo process link.
      Parameters:
      kaleoProcessLinkId - the kaleo process link ID of this kaleo process link
    • getCompanyId

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

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

      long getKaleoProcessId()
      Returns the kaleo process ID of this kaleo process link.
      Returns:
      the kaleo process ID of this kaleo process link
    • setKaleoProcessId

      void setKaleoProcessId(long kaleoProcessId)
      Sets the kaleo process ID of this kaleo process link.
      Parameters:
      kaleoProcessId - the kaleo process ID of this kaleo process link
    • getWorkflowTaskName

      @AutoEscape String getWorkflowTaskName()
      Returns the workflow task name of this kaleo process link.
      Returns:
      the workflow task name of this kaleo process link
    • setWorkflowTaskName

      void setWorkflowTaskName(String workflowTaskName)
      Sets the workflow task name of this kaleo process link.
      Parameters:
      workflowTaskName - the workflow task name of this kaleo process link
    • getDDMTemplateId

      long getDDMTemplateId()
      Returns the ddm template ID of this kaleo process link.
      Returns:
      the ddm template ID of this kaleo process link
    • setDDMTemplateId

      void setDDMTemplateId(long DDMTemplateId)
      Sets the ddm template ID of this kaleo process link.
      Parameters:
      DDMTemplateId - the ddm template ID of this kaleo process link
    • cloneWithOriginalValues

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

      default String toXmlString()