Interface UserNotificationDeliveryModel

All Superinterfaces:
BaseModel<UserNotificationDelivery>, ClassedModel, Cloneable, Comparable<UserNotificationDelivery>, MVCCModel, Serializable, ShardedModel, TypedModel
All Known Subinterfaces:
UserNotificationDelivery
All Known Implementing Classes:
UserNotificationDeliveryWrapper

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

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

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

    • getPrimaryKey

      long getPrimaryKey()
      Returns the primary key of this user notification delivery.
      Returns:
      the primary key of this user notification delivery
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this user notification delivery.
      Parameters:
      primaryKey - the primary key of this user notification delivery
    • getMvccVersion

      long getMvccVersion()
      Returns the mvcc version of this user notification delivery.
      Specified by:
      getMvccVersion in interface MVCCModel
      Returns:
      the mvcc version of this user notification delivery
    • setMvccVersion

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this user notification delivery.
      Specified by:
      setMvccVersion in interface MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this user notification delivery
    • getUserNotificationDeliveryId

      long getUserNotificationDeliveryId()
      Returns the user notification delivery ID of this user notification delivery.
      Returns:
      the user notification delivery ID of this user notification delivery
    • setUserNotificationDeliveryId

      void setUserNotificationDeliveryId(long userNotificationDeliveryId)
      Sets the user notification delivery ID of this user notification delivery.
      Parameters:
      userNotificationDeliveryId - the user notification delivery ID of this user notification delivery
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this user notification delivery.
      Specified by:
      getCompanyId in interface ShardedModel
      Returns:
      the company ID of this user notification delivery
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this user notification delivery.
      Specified by:
      setCompanyId in interface ShardedModel
      Parameters:
      companyId - the company ID of this user notification delivery
    • getUserId

      long getUserId()
      Returns the user ID of this user notification delivery.
      Returns:
      the user ID of this user notification delivery
    • setUserId

      void setUserId(long userId)
      Sets the user ID of this user notification delivery.
      Parameters:
      userId - the user ID of this user notification delivery
    • getUserUuid

      String getUserUuid()
      Returns the user uuid of this user notification delivery.
      Returns:
      the user uuid of this user notification delivery
    • setUserUuid

      void setUserUuid(String userUuid)
      Sets the user uuid of this user notification delivery.
      Parameters:
      userUuid - the user uuid of this user notification delivery
    • getPortletId

      @AutoEscape String getPortletId()
      Returns the portlet ID of this user notification delivery.
      Returns:
      the portlet ID of this user notification delivery
    • setPortletId

      void setPortletId(String portletId)
      Sets the portlet ID of this user notification delivery.
      Parameters:
      portletId - the portlet ID of this user notification delivery
    • getClassName

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

      void setClassName(String className)
    • getClassNameId

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

      void setClassNameId(long classNameId)
      Sets the class name ID of this user notification delivery.
      Specified by:
      setClassNameId in interface TypedModel
      Parameters:
      classNameId - the class name ID of this user notification delivery
    • getNotificationType

      int getNotificationType()
      Returns the notification type of this user notification delivery.
      Returns:
      the notification type of this user notification delivery
    • setNotificationType

      void setNotificationType(int notificationType)
      Sets the notification type of this user notification delivery.
      Parameters:
      notificationType - the notification type of this user notification delivery
    • getDeliveryType

      int getDeliveryType()
      Returns the delivery type of this user notification delivery.
      Returns:
      the delivery type of this user notification delivery
    • setDeliveryType

      void setDeliveryType(int deliveryType)
      Sets the delivery type of this user notification delivery.
      Parameters:
      deliveryType - the delivery type of this user notification delivery
    • getDeliver

      boolean getDeliver()
      Returns the deliver of this user notification delivery.
      Returns:
      the deliver of this user notification delivery
    • isDeliver

      boolean isDeliver()
      Returns true if this user notification delivery is deliver.
      Returns:
      true if this user notification delivery is deliver; false otherwise
    • setDeliver

      void setDeliver(boolean deliver)
      Sets whether this user notification delivery is deliver.
      Parameters:
      deliver - the deliver of this user notification delivery
    • cloneWithOriginalValues

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

      default String toXmlString()