Package com.liferay.portal.kernel.model
Interface LayoutBranchModel
- All Superinterfaces:
BaseModel<LayoutBranch>
,ClassedModel
,Cloneable
,Comparable<LayoutBranch>
,MVCCModel
,Serializable
,ShardedModel
- All Known Subinterfaces:
LayoutBranch
- All Known Implementing Classes:
LayoutBranchWrapper
@ProviderType
public interface LayoutBranchModel
extends BaseModel<LayoutBranch>, MVCCModel, ShardedModel
The base model interface for the LayoutBranch service. Represents a row in the "LayoutBranch" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portal.model.impl.LayoutBranchModelImpl
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.LayoutBranchImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the company ID of this layout branch.Returns the description of this layout branch.long
Returns the group ID of this layout branch.long
Returns the layout branch ID of this layout branch.long
Returns the layout set branch ID of this layout branch.boolean
Returns the master of this layout branch.long
Returns the mvcc version of this layout branch.getName()
Returns the name of this layout branch.long
getPlid()
Returns the plid of this layout branch.long
Returns the primary key of this layout branch.long
Returns the user ID of this layout branch.Returns the user name of this layout branch.Returns the user uuid of this layout branch.boolean
isMaster()
Returnstrue
if this layout branch is master.void
setCompanyId
(long companyId) Sets the company ID of this layout branch.void
setDescription
(String description) Sets the description of this layout branch.void
setGroupId
(long groupId) Sets the group ID of this layout branch.void
setLayoutBranchId
(long layoutBranchId) Sets the layout branch ID of this layout branch.void
setLayoutSetBranchId
(long layoutSetBranchId) Sets the layout set branch ID of this layout branch.void
setMaster
(boolean master) Sets whether this layout branch is master.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this layout branch.void
Sets the name of this layout branch.void
setPlid
(long plid) Sets the plid of this layout branch.void
setPrimaryKey
(long primaryKey) Sets the primary key of this layout branch.void
setUserId
(long userId) Sets the user ID of this layout branch.void
setUserName
(String userName) Sets the user name of this layout branch.void
setUserUuid
(String userUuid) Sets the user uuid of this layout branch.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 layout branch.- Returns:
- the primary key of this layout branch
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this layout branch.- Parameters:
primaryKey
- the primary key of this layout branch
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this layout branch.- Specified by:
getMvccVersion
in interfaceMVCCModel
- Returns:
- the mvcc version of this layout branch
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this layout branch.- Specified by:
setMvccVersion
in interfaceMVCCModel
- Parameters:
mvccVersion
- the mvcc version of this layout branch
-
getLayoutBranchId
long getLayoutBranchId()Returns the layout branch ID of this layout branch.- Returns:
- the layout branch ID of this layout branch
-
setLayoutBranchId
void setLayoutBranchId(long layoutBranchId) Sets the layout branch ID of this layout branch.- Parameters:
layoutBranchId
- the layout branch ID of this layout branch
-
getGroupId
long getGroupId()Returns the group ID of this layout branch.- Returns:
- the group ID of this layout branch
-
setGroupId
void setGroupId(long groupId) Sets the group ID of this layout branch.- Parameters:
groupId
- the group ID of this layout branch
-
getCompanyId
long getCompanyId()Returns the company ID of this layout branch.- Specified by:
getCompanyId
in interfaceShardedModel
- Returns:
- the company ID of this layout branch
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this layout branch.- Specified by:
setCompanyId
in interfaceShardedModel
- Parameters:
companyId
- the company ID of this layout branch
-
getUserId
long getUserId()Returns the user ID of this layout branch.- Returns:
- the user ID of this layout branch
-
setUserId
void setUserId(long userId) Sets the user ID of this layout branch.- Parameters:
userId
- the user ID of this layout branch
-
getUserUuid
String getUserUuid()Returns the user uuid of this layout branch.- Returns:
- the user uuid of this layout branch
-
setUserUuid
Sets the user uuid of this layout branch.- Parameters:
userUuid
- the user uuid of this layout branch
-
getUserName
Returns the user name of this layout branch.- Returns:
- the user name of this layout branch
-
setUserName
Sets the user name of this layout branch.- Parameters:
userName
- the user name of this layout branch
-
getLayoutSetBranchId
long getLayoutSetBranchId()Returns the layout set branch ID of this layout branch.- Returns:
- the layout set branch ID of this layout branch
-
setLayoutSetBranchId
void setLayoutSetBranchId(long layoutSetBranchId) Sets the layout set branch ID of this layout branch.- Parameters:
layoutSetBranchId
- the layout set branch ID of this layout branch
-
getPlid
long getPlid()Returns the plid of this layout branch.- Returns:
- the plid of this layout branch
-
setPlid
void setPlid(long plid) Sets the plid of this layout branch.- Parameters:
plid
- the plid of this layout branch
-
getName
Returns the name of this layout branch.- Returns:
- the name of this layout branch
-
setName
Sets the name of this layout branch.- Parameters:
name
- the name of this layout branch
-
getDescription
Returns the description of this layout branch.- Returns:
- the description of this layout branch
-
setDescription
Sets the description of this layout branch.- Parameters:
description
- the description of this layout branch
-
getMaster
boolean getMaster()Returns the master of this layout branch.- Returns:
- the master of this layout branch
-
isMaster
boolean isMaster()Returnstrue
if this layout branch is master.- Returns:
true
if this layout branch is master;false
otherwise
-
setMaster
void setMaster(boolean master) Sets whether this layout branch is master.- Parameters:
master
- the master of this layout branch
-
cloneWithOriginalValues
LayoutBranch cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfaceBaseModel<LayoutBranch>
-
toXmlString
-