Interface ExpandoRowModel

All Superinterfaces:
BaseModel<ExpandoRow>, ClassedModel, Cloneable, Comparable<ExpandoRow>, CTModel<ExpandoRow>, MVCCModel, Serializable, ShardedModel
All Known Subinterfaces:
ExpandoRow
All Known Implementing Classes:
ExpandoRowWrapper

@ProviderType public interface ExpandoRowModel extends BaseModel<ExpandoRow>, CTModel<ExpandoRow>, MVCCModel, ShardedModel
The base model interface for the ExpandoRow service. Represents a row in the "ExpandoRow" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation com.liferay.portlet.expando.model.impl.ExpandoRowModelImpl 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.portlet.expando.model.impl.ExpandoRowImpl.

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Method Details

    • getPrimaryKey

      long getPrimaryKey()
      Returns the primary key of this expando row.
      Specified by:
      getPrimaryKey in interface CTModel<ExpandoRow>
      Returns:
      the primary key of this expando row
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this expando row.
      Specified by:
      setPrimaryKey in interface CTModel<ExpandoRow>
      Parameters:
      primaryKey - the primary key of this expando row
    • getMvccVersion

      long getMvccVersion()
      Returns the mvcc version of this expando row.
      Specified by:
      getMvccVersion in interface MVCCModel
      Returns:
      the mvcc version of this expando row
    • setMvccVersion

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this expando row.
      Specified by:
      setMvccVersion in interface MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this expando row
    • getCtCollectionId

      long getCtCollectionId()
      Returns the ct collection ID of this expando row.
      Specified by:
      getCtCollectionId in interface CTModel<ExpandoRow>
      Returns:
      the ct collection ID of this expando row
    • setCtCollectionId

      void setCtCollectionId(long ctCollectionId)
      Sets the ct collection ID of this expando row.
      Specified by:
      setCtCollectionId in interface CTModel<ExpandoRow>
      Parameters:
      ctCollectionId - the ct collection ID of this expando row
    • getRowId

      long getRowId()
      Returns the row ID of this expando row.
      Returns:
      the row ID of this expando row
    • setRowId

      void setRowId(long rowId)
      Sets the row ID of this expando row.
      Parameters:
      rowId - the row ID of this expando row
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this expando row.
      Specified by:
      getCompanyId in interface ShardedModel
      Returns:
      the company ID of this expando row
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this expando row.
      Specified by:
      setCompanyId in interface ShardedModel
      Parameters:
      companyId - the company ID of this expando row
    • getModifiedDate

      Date getModifiedDate()
      Returns the modified date of this expando row.
      Returns:
      the modified date of this expando row
    • setModifiedDate

      void setModifiedDate(Date modifiedDate)
      Sets the modified date of this expando row.
      Parameters:
      modifiedDate - the modified date of this expando row
    • getTableId

      long getTableId()
      Returns the table ID of this expando row.
      Returns:
      the table ID of this expando row
    • setTableId

      void setTableId(long tableId)
      Sets the table ID of this expando row.
      Parameters:
      tableId - the table ID of this expando row
    • getClassPK

      long getClassPK()
      Returns the class pk of this expando row.
      Returns:
      the class pk of this expando row
    • setClassPK

      void setClassPK(long classPK)
      Sets the class pk of this expando row.
      Parameters:
      classPK - the class pk of this expando row
    • cloneWithOriginalValues

      ExpandoRow cloneWithOriginalValues()
      Specified by:
      cloneWithOriginalValues in interface BaseModel<ExpandoRow>
    • toXmlString

      default String toXmlString()