Interface ListTypeModel

All Superinterfaces:
AuditedModel, BaseModel<ListType>, ClassedModel, Cloneable, Comparable<ListType>, MVCCModel, Serializable, ShardedModel, StagedAuditedModel, StagedModel
All Known Subinterfaces:
ListType
All Known Implementing Classes:
ListTypeWrapper

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

This interface and its corresponding implementation com.liferay.portal.model.impl.ListTypeModelImpl 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.portal.model.impl.ListTypeImpl.

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

    • getPrimaryKey

      long getPrimaryKey()
      Returns the primary key of this list type.
      Returns:
      the primary key of this list type
    • setPrimaryKey

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

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

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this list type.
      Specified by:
      setMvccVersion in interface MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this list type
    • getUuid

      @AutoEscape String getUuid()
      Returns the uuid of this list type.
      Specified by:
      getUuid in interface StagedModel
      Returns:
      the uuid of this list type
    • setUuid

      void setUuid(String uuid)
      Sets the uuid of this list type.
      Specified by:
      setUuid in interface StagedModel
      Parameters:
      uuid - the uuid of this list type
    • getListTypeId

      long getListTypeId()
      Returns the list type ID of this list type.
      Returns:
      the list type ID of this list type
    • setListTypeId

      void setListTypeId(long listTypeId)
      Sets the list type ID of this list type.
      Parameters:
      listTypeId - the list type ID of this list type
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this list type.
      Specified by:
      getCompanyId in interface AuditedModel
      Specified by:
      getCompanyId in interface ShardedModel
      Specified by:
      getCompanyId in interface StagedModel
      Returns:
      the company ID of this list type
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this list type.
      Specified by:
      setCompanyId in interface AuditedModel
      Specified by:
      setCompanyId in interface ShardedModel
      Specified by:
      setCompanyId in interface StagedModel
      Parameters:
      companyId - the company ID of this list type
    • getUserId

      long getUserId()
      Returns the user ID of this list type.
      Specified by:
      getUserId in interface AuditedModel
      Returns:
      the user ID of this list type
    • setUserId

      void setUserId(long userId)
      Sets the user ID of this list type.
      Specified by:
      setUserId in interface AuditedModel
      Parameters:
      userId - the user ID of this list type
    • getUserUuid

      String getUserUuid()
      Returns the user uuid of this list type.
      Specified by:
      getUserUuid in interface AuditedModel
      Returns:
      the user uuid of this list type
    • setUserUuid

      void setUserUuid(String userUuid)
      Sets the user uuid of this list type.
      Specified by:
      setUserUuid in interface AuditedModel
      Parameters:
      userUuid - the user uuid of this list type
    • getUserName

      @AutoEscape String getUserName()
      Returns the user name of this list type.
      Specified by:
      getUserName in interface AuditedModel
      Returns:
      the user name of this list type
    • setUserName

      void setUserName(String userName)
      Sets the user name of this list type.
      Specified by:
      setUserName in interface AuditedModel
      Parameters:
      userName - the user name of this list type
    • getCreateDate

      Date getCreateDate()
      Returns the create date of this list type.
      Specified by:
      getCreateDate in interface AuditedModel
      Specified by:
      getCreateDate in interface StagedModel
      Returns:
      the create date of this list type
    • setCreateDate

      void setCreateDate(Date createDate)
      Sets the create date of this list type.
      Specified by:
      setCreateDate in interface AuditedModel
      Specified by:
      setCreateDate in interface StagedModel
      Parameters:
      createDate - the create date of this list type
    • getModifiedDate

      Date getModifiedDate()
      Returns the modified date of this list type.
      Specified by:
      getModifiedDate in interface AuditedModel
      Specified by:
      getModifiedDate in interface StagedModel
      Returns:
      the modified date of this list type
    • setModifiedDate

      void setModifiedDate(Date modifiedDate)
      Sets the modified date of this list type.
      Specified by:
      setModifiedDate in interface AuditedModel
      Specified by:
      setModifiedDate in interface StagedModel
      Parameters:
      modifiedDate - the modified date of this list type
    • getName

      @AutoEscape String getName()
      Returns the name of this list type.
      Returns:
      the name of this list type
    • setName

      void setName(String name)
      Sets the name of this list type.
      Parameters:
      name - the name of this list type
    • getType

      @AutoEscape String getType()
      Returns the type of this list type.
      Returns:
      the type of this list type
    • setType

      void setType(String type)
      Sets the type of this list type.
      Parameters:
      type - the type of this list type
    • cloneWithOriginalValues

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

      default String toXmlString()