Interface PushNotificationsDeviceModel

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

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

This interface and its corresponding implementation com.liferay.push.notifications.model.impl.PushNotificationsDeviceModelImpl 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.push.notifications.model.impl.PushNotificationsDeviceImpl.

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the company ID of this push notifications device.
    Returns the create date of this push notifications device.
    Returns the platform of this push notifications device.
    long
    Returns the primary key of this push notifications device.
    long
    Returns the push notifications device ID of this push notifications device.
    Returns the token of this push notifications device.
    long
    Returns the user ID of this push notifications device.
    Returns the user uuid of this push notifications device.
    void
    setCompanyId(long companyId)
    Sets the company ID of this push notifications device.
    void
    setCreateDate(Date createDate)
    Sets the create date of this push notifications device.
    void
    setPlatform(String platform)
    Sets the platform of this push notifications device.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this push notifications device.
    void
    setPushNotificationsDeviceId(long pushNotificationsDeviceId)
    Sets the push notifications device ID of this push notifications device.
    void
    Sets the token of this push notifications device.
    void
    setUserId(long userId)
    Sets the user ID of this push notifications device.
    void
    setUserUuid(String userUuid)
    Sets the user uuid of this push notifications device.
    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 push notifications device.
      Returns:
      the primary key of this push notifications device
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this push notifications device.
      Parameters:
      primaryKey - the primary key of this push notifications device
    • getPushNotificationsDeviceId

      long getPushNotificationsDeviceId()
      Returns the push notifications device ID of this push notifications device.
      Returns:
      the push notifications device ID of this push notifications device
    • setPushNotificationsDeviceId

      void setPushNotificationsDeviceId(long pushNotificationsDeviceId)
      Sets the push notifications device ID of this push notifications device.
      Parameters:
      pushNotificationsDeviceId - the push notifications device ID of this push notifications device
    • getCompanyId

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

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

      long getUserId()
      Returns the user ID of this push notifications device.
      Returns:
      the user ID of this push notifications device
    • setUserId

      void setUserId(long userId)
      Sets the user ID of this push notifications device.
      Parameters:
      userId - the user ID of this push notifications device
    • getUserUuid

      String getUserUuid()
      Returns the user uuid of this push notifications device.
      Returns:
      the user uuid of this push notifications device
    • setUserUuid

      void setUserUuid(String userUuid)
      Sets the user uuid of this push notifications device.
      Parameters:
      userUuid - the user uuid of this push notifications device
    • getCreateDate

      Date getCreateDate()
      Returns the create date of this push notifications device.
      Returns:
      the create date of this push notifications device
    • setCreateDate

      void setCreateDate(Date createDate)
      Sets the create date of this push notifications device.
      Parameters:
      createDate - the create date of this push notifications device
    • getPlatform

      @AutoEscape String getPlatform()
      Returns the platform of this push notifications device.
      Returns:
      the platform of this push notifications device
    • setPlatform

      void setPlatform(String platform)
      Sets the platform of this push notifications device.
      Parameters:
      platform - the platform of this push notifications device
    • getToken

      @AutoEscape String getToken()
      Returns the token of this push notifications device.
      Returns:
      the token of this push notifications device
    • setToken

      void setToken(String token)
      Sets the token of this push notifications device.
      Parameters:
      token - the token of this push notifications device
    • cloneWithOriginalValues

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

      default String toXmlString()