Package com.liferay.social.kernel.model
Interface SocialActivityAchievementModel
- All Superinterfaces:
BaseModel<SocialActivityAchievement>,ClassedModel,Cloneable,Comparable<SocialActivityAchievement>,CTModel<SocialActivityAchievement>,MVCCModel,Serializable,ShardedModel
- All Known Subinterfaces:
SocialActivityAchievement
- All Known Implementing Classes:
SocialActivityAchievementWrapper
@ProviderType
public interface SocialActivityAchievementModel
extends BaseModel<SocialActivityAchievement>, CTModel<SocialActivityAchievement>, MVCCModel, ShardedModel
The base model interface for the SocialActivityAchievement service. Represents a row in the "SocialActivityAchievement" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portlet.social.model.impl.SocialActivityAchievementModelImpl 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.social.model.impl.SocialActivityAchievementImpl.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionlongReturns the activity achievement ID of this social activity achievement.longReturns the company ID of this social activity achievement.longReturns the create date of this social activity achievement.longReturns the ct collection ID of this social activity achievement.booleanReturns the first in group of this social activity achievement.longReturns the group ID of this social activity achievement.longReturns the mvcc version of this social activity achievement.getName()Returns the name of this social activity achievement.longReturns the primary key of this social activity achievement.longReturns the user ID of this social activity achievement.Returns the user uuid of this social activity achievement.booleanReturnstrueif this social activity achievement is first in group.voidsetActivityAchievementId(long activityAchievementId) Sets the activity achievement ID of this social activity achievement.voidsetCompanyId(long companyId) Sets the company ID of this social activity achievement.voidsetCreateDate(long createDate) Sets the create date of this social activity achievement.voidsetCtCollectionId(long ctCollectionId) Sets the ct collection ID of this social activity achievement.voidsetFirstInGroup(boolean firstInGroup) Sets whether this social activity achievement is first in group.voidsetGroupId(long groupId) Sets the group ID of this social activity achievement.voidsetMvccVersion(long mvccVersion) Sets the mvcc version of this social activity achievement.voidSets the name of this social activity achievement.voidsetPrimaryKey(long primaryKey) Sets the primary key of this social activity achievement.voidsetUserId(long userId) Sets the user ID of this social activity achievement.voidsetUserUuid(String userUuid) Sets the user uuid of this social activity achievement.default StringMethods 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, toUnescapedModelMethods inherited from interface com.liferay.portal.kernel.model.ClassedModel
getModelClass, getModelClassNameMethods inherited from interface java.lang.Comparable
compareTo
-
Method Details
-
getPrimaryKey
long getPrimaryKey()Returns the primary key of this social activity achievement.- Specified by:
getPrimaryKeyin interfaceCTModel<SocialActivityAchievement>- Returns:
- the primary key of this social activity achievement
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this social activity achievement.- Specified by:
setPrimaryKeyin interfaceCTModel<SocialActivityAchievement>- Parameters:
primaryKey- the primary key of this social activity achievement
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this social activity achievement.- Specified by:
getMvccVersionin interfaceMVCCModel- Returns:
- the mvcc version of this social activity achievement
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this social activity achievement.- Specified by:
setMvccVersionin interfaceMVCCModel- Parameters:
mvccVersion- the mvcc version of this social activity achievement
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this social activity achievement.- Specified by:
getCtCollectionIdin interfaceCTModel<SocialActivityAchievement>- Returns:
- the ct collection ID of this social activity achievement
-
setCtCollectionId
void setCtCollectionId(long ctCollectionId) Sets the ct collection ID of this social activity achievement.- Specified by:
setCtCollectionIdin interfaceCTModel<SocialActivityAchievement>- Parameters:
ctCollectionId- the ct collection ID of this social activity achievement
-
getActivityAchievementId
long getActivityAchievementId()Returns the activity achievement ID of this social activity achievement.- Returns:
- the activity achievement ID of this social activity achievement
-
setActivityAchievementId
void setActivityAchievementId(long activityAchievementId) Sets the activity achievement ID of this social activity achievement.- Parameters:
activityAchievementId- the activity achievement ID of this social activity achievement
-
getGroupId
long getGroupId()Returns the group ID of this social activity achievement.- Returns:
- the group ID of this social activity achievement
-
setGroupId
void setGroupId(long groupId) Sets the group ID of this social activity achievement.- Parameters:
groupId- the group ID of this social activity achievement
-
getCompanyId
long getCompanyId()Returns the company ID of this social activity achievement.- Specified by:
getCompanyIdin interfaceShardedModel- Returns:
- the company ID of this social activity achievement
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this social activity achievement.- Specified by:
setCompanyIdin interfaceShardedModel- Parameters:
companyId- the company ID of this social activity achievement
-
getUserId
long getUserId()Returns the user ID of this social activity achievement.- Returns:
- the user ID of this social activity achievement
-
setUserId
void setUserId(long userId) Sets the user ID of this social activity achievement.- Parameters:
userId- the user ID of this social activity achievement
-
getUserUuid
String getUserUuid()Returns the user uuid of this social activity achievement.- Returns:
- the user uuid of this social activity achievement
-
setUserUuid
Sets the user uuid of this social activity achievement.- Parameters:
userUuid- the user uuid of this social activity achievement
-
getCreateDate
long getCreateDate()Returns the create date of this social activity achievement.- Returns:
- the create date of this social activity achievement
-
setCreateDate
void setCreateDate(long createDate) Sets the create date of this social activity achievement.- Parameters:
createDate- the create date of this social activity achievement
-
getName
Returns the name of this social activity achievement.- Returns:
- the name of this social activity achievement
-
setName
Sets the name of this social activity achievement.- Parameters:
name- the name of this social activity achievement
-
getFirstInGroup
boolean getFirstInGroup()Returns the first in group of this social activity achievement.- Returns:
- the first in group of this social activity achievement
-
isFirstInGroup
boolean isFirstInGroup()Returnstrueif this social activity achievement is first in group.- Returns:
trueif this social activity achievement is first in group;falseotherwise
-
setFirstInGroup
void setFirstInGroup(boolean firstInGroup) Sets whether this social activity achievement is first in group.- Parameters:
firstInGroup- the first in group of this social activity achievement
-
cloneWithOriginalValues
SocialActivityAchievement cloneWithOriginalValues()- Specified by:
cloneWithOriginalValuesin interfaceBaseModel<SocialActivityAchievement>
-
toXmlString
-