Interface CTProcessModel

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

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

This interface and its corresponding implementation com.liferay.change.tracking.model.impl.CTProcessModelImpl 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.change.tracking.model.impl.CTProcessImpl.

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the background task ID of this ct process.
    long
    Returns the company ID of this ct process.
    Returns the create date of this ct process.
    long
    Returns the ct collection ID of this ct process.
    long
    Returns the ct process ID of this ct process.
    long
    Returns the mvcc version of this ct process.
    long
    Returns the primary key of this ct process.
    int
    Returns the type of this ct process.
    long
    Returns the user ID of this ct process.
    Returns the user uuid of this ct process.
    void
    setBackgroundTaskId(long backgroundTaskId)
    Sets the background task ID of this ct process.
    void
    setCompanyId(long companyId)
    Sets the company ID of this ct process.
    void
    setCreateDate(Date createDate)
    Sets the create date of this ct process.
    void
    setCtCollectionId(long ctCollectionId)
    Sets the ct collection ID of this ct process.
    void
    setCtProcessId(long ctProcessId)
    Sets the ct process ID of this ct process.
    void
    setMvccVersion(long mvccVersion)
    Sets the mvcc version of this ct process.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this ct process.
    void
    setType(int type)
    Sets the type of this ct process.
    void
    setUserId(long userId)
    Sets the user ID of this ct process.
    void
    setUserUuid(String userUuid)
    Sets the user uuid of this ct process.
    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 ct process.
      Returns:
      the primary key of this ct process
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this ct process.
      Parameters:
      primaryKey - the primary key of this ct process
    • getMvccVersion

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

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

      long getCtProcessId()
      Returns the ct process ID of this ct process.
      Returns:
      the ct process ID of this ct process
    • setCtProcessId

      void setCtProcessId(long ctProcessId)
      Sets the ct process ID of this ct process.
      Parameters:
      ctProcessId - the ct process ID of this ct process
    • getCompanyId

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

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

      long getUserId()
      Returns the user ID of this ct process.
      Returns:
      the user ID of this ct process
    • setUserId

      void setUserId(long userId)
      Sets the user ID of this ct process.
      Parameters:
      userId - the user ID of this ct process
    • getUserUuid

      String getUserUuid()
      Returns the user uuid of this ct process.
      Returns:
      the user uuid of this ct process
    • setUserUuid

      void setUserUuid(String userUuid)
      Sets the user uuid of this ct process.
      Parameters:
      userUuid - the user uuid of this ct process
    • getCreateDate

      Date getCreateDate()
      Returns the create date of this ct process.
      Returns:
      the create date of this ct process
    • setCreateDate

      void setCreateDate(Date createDate)
      Sets the create date of this ct process.
      Parameters:
      createDate - the create date of this ct process
    • getCtCollectionId

      long getCtCollectionId()
      Returns the ct collection ID of this ct process.
      Returns:
      the ct collection ID of this ct process
    • setCtCollectionId

      void setCtCollectionId(long ctCollectionId)
      Sets the ct collection ID of this ct process.
      Parameters:
      ctCollectionId - the ct collection ID of this ct process
    • getBackgroundTaskId

      long getBackgroundTaskId()
      Returns the background task ID of this ct process.
      Returns:
      the background task ID of this ct process
    • setBackgroundTaskId

      void setBackgroundTaskId(long backgroundTaskId)
      Sets the background task ID of this ct process.
      Parameters:
      backgroundTaskId - the background task ID of this ct process
    • getType

      int getType()
      Returns the type of this ct process.
      Returns:
      the type of this ct process
    • setType

      void setType(int type)
      Sets the type of this ct process.
      Parameters:
      type - the type of this ct process
    • cloneWithOriginalValues

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

      default String toXmlString()