Interface CTRemoteModel

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

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

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

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    Returns the client ID of this ct remote.
    Returns the client secret of this ct remote.
    long
    Returns the company ID of this ct remote.
    Returns the create date of this ct remote.
    long
    Returns the ct remote ID of this ct remote.
    Returns the description of this ct remote.
    Returns the modified date of this ct remote.
    long
    Returns the mvcc version of this ct remote.
    Returns the name of this ct remote.
    long
    Returns the primary key of this ct remote.
    Returns the url of this ct remote.
    long
    Returns the user ID of this ct remote.
    Returns the user uuid of this ct remote.
    void
    setClientId(String clientId)
    Sets the client ID of this ct remote.
    void
    setClientSecret(String clientSecret)
    Sets the client secret of this ct remote.
    void
    setCompanyId(long companyId)
    Sets the company ID of this ct remote.
    void
    setCreateDate(Date createDate)
    Sets the create date of this ct remote.
    void
    setCtRemoteId(long ctRemoteId)
    Sets the ct remote ID of this ct remote.
    void
    setDescription(String description)
    Sets the description of this ct remote.
    void
    setModifiedDate(Date modifiedDate)
    Sets the modified date of this ct remote.
    void
    setMvccVersion(long mvccVersion)
    Sets the mvcc version of this ct remote.
    void
    Sets the name of this ct remote.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this ct remote.
    void
    Sets the url of this ct remote.
    void
    setUserId(long userId)
    Sets the user ID of this ct remote.
    void
    setUserUuid(String userUuid)
    Sets the user uuid of this ct remote.
    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 remote.
      Returns:
      the primary key of this ct remote
    • setPrimaryKey

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

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

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

      long getCtRemoteId()
      Returns the ct remote ID of this ct remote.
      Returns:
      the ct remote ID of this ct remote
    • setCtRemoteId

      void setCtRemoteId(long ctRemoteId)
      Sets the ct remote ID of this ct remote.
      Parameters:
      ctRemoteId - the ct remote ID of this ct remote
    • getCompanyId

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

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

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

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

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

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

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

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

      Date getModifiedDate()
      Returns the modified date of this ct remote.
      Returns:
      the modified date of this ct remote
    • setModifiedDate

      void setModifiedDate(Date modifiedDate)
      Sets the modified date of this ct remote.
      Parameters:
      modifiedDate - the modified date of this ct remote
    • getName

      @AutoEscape String getName()
      Returns the name of this ct remote.
      Returns:
      the name of this ct remote
    • setName

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

      @AutoEscape String getDescription()
      Returns the description of this ct remote.
      Returns:
      the description of this ct remote
    • setDescription

      void setDescription(String description)
      Sets the description of this ct remote.
      Parameters:
      description - the description of this ct remote
    • getUrl

      @AutoEscape String getUrl()
      Returns the url of this ct remote.
      Returns:
      the url of this ct remote
    • setUrl

      void setUrl(String url)
      Sets the url of this ct remote.
      Parameters:
      url - the url of this ct remote
    • getClientId

      @AutoEscape String getClientId()
      Returns the client ID of this ct remote.
      Returns:
      the client ID of this ct remote
    • setClientId

      void setClientId(String clientId)
      Sets the client ID of this ct remote.
      Parameters:
      clientId - the client ID of this ct remote
    • getClientSecret

      @AutoEscape String getClientSecret()
      Returns the client secret of this ct remote.
      Returns:
      the client secret of this ct remote
    • setClientSecret

      void setClientSecret(String clientSecret)
      Sets the client secret of this ct remote.
      Parameters:
      clientSecret - the client secret of this ct remote
    • cloneWithOriginalValues

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

      default String toXmlString()