Interface DLStorageQuotaModel

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

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

This interface and its corresponding implementation com.liferay.document.library.model.impl.DLStorageQuotaModelImpl 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.document.library.model.impl.DLStorageQuotaImpl.

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the company ID of this dl storage quota.
    long
    Returns the dl storage quota ID of this dl storage quota.
    long
    Returns the mvcc version of this dl storage quota.
    long
    Returns the primary key of this dl storage quota.
    long
    Returns the storage size of this dl storage quota.
    void
    setCompanyId(long companyId)
    Sets the company ID of this dl storage quota.
    void
    setDlStorageQuotaId(long dlStorageQuotaId)
    Sets the dl storage quota ID of this dl storage quota.
    void
    setMvccVersion(long mvccVersion)
    Sets the mvcc version of this dl storage quota.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this dl storage quota.
    void
    setStorageSize(long storageSize)
    Sets the storage size of this dl storage quota.
    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 dl storage quota.
      Returns:
      the primary key of this dl storage quota
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this dl storage quota.
      Parameters:
      primaryKey - the primary key of this dl storage quota
    • getMvccVersion

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

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this dl storage quota.
      Specified by:
      setMvccVersion in interface com.liferay.portal.kernel.model.MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this dl storage quota
    • getDlStorageQuotaId

      long getDlStorageQuotaId()
      Returns the dl storage quota ID of this dl storage quota.
      Returns:
      the dl storage quota ID of this dl storage quota
    • setDlStorageQuotaId

      void setDlStorageQuotaId(long dlStorageQuotaId)
      Sets the dl storage quota ID of this dl storage quota.
      Parameters:
      dlStorageQuotaId - the dl storage quota ID of this dl storage quota
    • getCompanyId

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

      void setCompanyId(long companyId)
      Sets the company ID of this dl storage quota.
      Specified by:
      setCompanyId in interface com.liferay.portal.kernel.model.ShardedModel
      Parameters:
      companyId - the company ID of this dl storage quota
    • getStorageSize

      long getStorageSize()
      Returns the storage size of this dl storage quota.
      Returns:
      the storage size of this dl storage quota
    • setStorageSize

      void setStorageSize(long storageSize)
      Sets the storage size of this dl storage quota.
      Parameters:
      storageSize - the storage size of this dl storage quota
    • cloneWithOriginalValues

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

      default String toXmlString()