Package com.liferay.portal.kernel.model
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 Summary
Modifier and TypeMethodDescriptionlongReturns the company ID of this list type.Returns the create date of this list type.longReturns the list type ID of this list type.Returns the modified date of this list type.longReturns the mvcc version of this list type.getName()Returns the name of this list type.longReturns the primary key of this list type.getType()Returns the type of this list type.longReturns the user ID of this list type.Returns the user name of this list type.Returns the user uuid of this list type.getUuid()Returns the uuid of this list type.voidsetCompanyId(long companyId) Sets the company ID of this list type.voidsetCreateDate(Date createDate) Sets the create date of this list type.voidsetListTypeId(long listTypeId) Sets the list type ID of this list type.voidsetModifiedDate(Date modifiedDate) Sets the modified date of this list type.voidsetMvccVersion(long mvccVersion) Sets the mvcc version of this list type.voidSets the name of this list type.voidsetPrimaryKey(long primaryKey) Sets the primary key of this list type.voidSets the type of this list type.voidsetUserId(long userId) Sets the user ID of this list type.voidsetUserName(String userName) Sets the user name of this list type.voidsetUserUuid(String userUuid) Sets the user uuid of this list type.voidSets the uuid of this list type.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
compareToMethods inherited from interface com.liferay.portal.kernel.model.StagedModel
clone, getStagedModelType
-
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:
getMvccVersionin interfaceMVCCModel- Returns:
- the mvcc version of this list type
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this list type.- Specified by:
setMvccVersionin interfaceMVCCModel- Parameters:
mvccVersion- the mvcc version of this list type
-
getUuid
Returns the uuid of this list type.- Specified by:
getUuidin interfaceStagedModel- Returns:
- the uuid of this list type
-
setUuid
Sets the uuid of this list type.- Specified by:
setUuidin interfaceStagedModel- 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:
getCompanyIdin interfaceAuditedModel- Specified by:
getCompanyIdin interfaceShardedModel- Specified by:
getCompanyIdin interfaceStagedModel- Returns:
- the company ID of this list type
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this list type.- Specified by:
setCompanyIdin interfaceAuditedModel- Specified by:
setCompanyIdin interfaceShardedModel- Specified by:
setCompanyIdin interfaceStagedModel- Parameters:
companyId- the company ID of this list type
-
getUserId
long getUserId()Returns the user ID of this list type.- Specified by:
getUserIdin interfaceAuditedModel- Returns:
- the user ID of this list type
-
setUserId
void setUserId(long userId) Sets the user ID of this list type.- Specified by:
setUserIdin interfaceAuditedModel- Parameters:
userId- the user ID of this list type
-
getUserUuid
String getUserUuid()Returns the user uuid of this list type.- Specified by:
getUserUuidin interfaceAuditedModel- Returns:
- the user uuid of this list type
-
setUserUuid
Sets the user uuid of this list type.- Specified by:
setUserUuidin interfaceAuditedModel- Parameters:
userUuid- the user uuid of this list type
-
getUserName
Returns the user name of this list type.- Specified by:
getUserNamein interfaceAuditedModel- Returns:
- the user name of this list type
-
setUserName
Sets the user name of this list type.- Specified by:
setUserNamein interfaceAuditedModel- Parameters:
userName- the user name of this list type
-
getCreateDate
Date getCreateDate()Returns the create date of this list type.- Specified by:
getCreateDatein interfaceAuditedModel- Specified by:
getCreateDatein interfaceStagedModel- Returns:
- the create date of this list type
-
setCreateDate
Sets the create date of this list type.- Specified by:
setCreateDatein interfaceAuditedModel- Specified by:
setCreateDatein interfaceStagedModel- Parameters:
createDate- the create date of this list type
-
getModifiedDate
Date getModifiedDate()Returns the modified date of this list type.- Specified by:
getModifiedDatein interfaceAuditedModel- Specified by:
getModifiedDatein interfaceStagedModel- Returns:
- the modified date of this list type
-
setModifiedDate
Sets the modified date of this list type.- Specified by:
setModifiedDatein interfaceAuditedModel- Specified by:
setModifiedDatein interfaceStagedModel- Parameters:
modifiedDate- the modified date of this list type
-
getName
Returns the name of this list type.- Returns:
- the name of this list type
-
setName
Sets the name of this list type.- Parameters:
name- the name of this list type
-
getType
Returns the type of this list type.- Returns:
- the type of this list type
-
setType
Sets the type of this list type.- Parameters:
type- the type of this list type
-
cloneWithOriginalValues
ListType cloneWithOriginalValues()- Specified by:
cloneWithOriginalValuesin interfaceBaseModel<ListType>
-
toXmlString
-