@ProviderType public interface AnnouncementsDeliveryModel extends BaseModel<AnnouncementsDelivery>, MVCCModel, ShardedModel
This interface and its corresponding implementation com.liferay.portlet.announcements.model.impl.AnnouncementsDeliveryModelImpl
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.announcements.model.impl.AnnouncementsDeliveryImpl
.
AnnouncementsDelivery
Modifier and Type | Method and Description |
---|---|
long |
getCompanyId()
Returns the company ID of this announcements delivery.
|
long |
getDeliveryId()
Returns the delivery ID of this announcements delivery.
|
boolean |
getEmail()
Returns the email of this announcements delivery.
|
long |
getMvccVersion()
Returns the mvcc version of this announcements delivery.
|
long |
getPrimaryKey()
Returns the primary key of this announcements delivery.
|
boolean |
getSms()
Returns the sms of this announcements delivery.
|
String |
getType()
Returns the type of this announcements delivery.
|
long |
getUserId()
Returns the user ID of this announcements delivery.
|
String |
getUserUuid()
Returns the user uuid of this announcements delivery.
|
boolean |
getWebsite()
Returns the website of this announcements delivery.
|
boolean |
isEmail()
Returns
true if this announcements delivery is email. |
boolean |
isSms()
Returns
true if this announcements delivery is sms. |
boolean |
isWebsite()
Returns
true if this announcements delivery is website. |
void |
setCompanyId(long companyId)
Sets the company ID of this announcements delivery.
|
void |
setDeliveryId(long deliveryId)
Sets the delivery ID of this announcements delivery.
|
void |
setEmail(boolean email)
Sets whether this announcements delivery is email.
|
void |
setMvccVersion(long mvccVersion)
Sets the mvcc version of this announcements delivery.
|
void |
setPrimaryKey(long primaryKey)
Sets the primary key of this announcements delivery.
|
void |
setSms(boolean sms)
Sets whether this announcements delivery is sms.
|
void |
setType(String type)
Sets the type of this announcements delivery.
|
void |
setUserId(long userId)
Sets the user ID of this announcements delivery.
|
void |
setUserUuid(String userUuid)
Sets the user uuid of this announcements delivery.
|
void |
setWebsite(boolean website)
Sets whether this announcements delivery is website.
|
clone, getAttributeGetterFunctions, getAttributeSetterBiConsumers, getExpandoBridge, getModelAttributes, getPrimaryKeyObj, isCachedModel, isEntityCacheEnabled, isEscapedModel, isFinderCacheEnabled, isNew, resetOriginalValues, setCachedModel, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setModelAttributes, setNew, setPrimaryKeyObj, toCacheModel, toEscapedModel, toUnescapedModel, toXmlString
getModelClass, getModelClassName
long getPrimaryKey()
void setPrimaryKey(long primaryKey)
primaryKey
- the primary key of this announcements deliverylong getMvccVersion()
getMvccVersion
in interface MVCCModel
void setMvccVersion(long mvccVersion)
setMvccVersion
in interface MVCCModel
mvccVersion
- the mvcc version of this announcements deliverylong getDeliveryId()
void setDeliveryId(long deliveryId)
deliveryId
- the delivery ID of this announcements deliverylong getCompanyId()
getCompanyId
in interface ShardedModel
void setCompanyId(long companyId)
setCompanyId
in interface ShardedModel
companyId
- the company ID of this announcements deliverylong getUserId()
void setUserId(long userId)
userId
- the user ID of this announcements deliveryString getUserUuid()
void setUserUuid(String userUuid)
userUuid
- the user uuid of this announcements delivery@AutoEscape String getType()
void setType(String type)
type
- the type of this announcements deliveryboolean getEmail()
boolean isEmail()
true
if this announcements delivery is email.true
if this announcements delivery is email; false
otherwisevoid setEmail(boolean email)
email
- the email of this announcements deliveryboolean getSms()
boolean isSms()
true
if this announcements delivery is sms.true
if this announcements delivery is sms; false
otherwisevoid setSms(boolean sms)
sms
- the sms of this announcements deliveryboolean getWebsite()
boolean isWebsite()
true
if this announcements delivery is website.true
if this announcements delivery is website; false
otherwisevoid setWebsite(boolean website)
website
- the website of this announcements delivery