Interface ExpandoTableModel

All Superinterfaces:
BaseModel<ExpandoTable>, ClassedModel, Cloneable, Comparable<ExpandoTable>, CTModel<ExpandoTable>, MVCCModel, Serializable, ShardedModel, TypedModel
All Known Subinterfaces:
ExpandoTable
All Known Implementing Classes:
ExpandoTableWrapper

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

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

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

    • getPrimaryKey

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

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

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

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

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

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

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

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

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

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

      String getClassName()
      Returns the fully qualified class name of this expando table.
      Specified by:
      getClassName in interface TypedModel
      Returns:
      the fully qualified class name of this expando table
    • setClassName

      void setClassName(String className)
    • getClassNameId

      long getClassNameId()
      Returns the class name ID of this expando table.
      Specified by:
      getClassNameId in interface TypedModel
      Returns:
      the class name ID of this expando table
    • setClassNameId

      void setClassNameId(long classNameId)
      Sets the class name ID of this expando table.
      Specified by:
      setClassNameId in interface TypedModel
      Parameters:
      classNameId - the class name ID of this expando table
    • getName

      @AutoEscape String getName()
      Returns the name of this expando table.
      Returns:
      the name of this expando table
    • setName

      void setName(String name)
      Sets the name of this expando table.
      Parameters:
      name - the name of this expando table
    • cloneWithOriginalValues

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

      default String toXmlString()