Package com.liferay.portal.kernel.model
Interface UserIdMapperModel
- All Superinterfaces:
BaseModel<UserIdMapper>
,ClassedModel
,Cloneable
,Comparable<UserIdMapper>
,MVCCModel
,Serializable
,ShardedModel
- All Known Subinterfaces:
UserIdMapper
- All Known Implementing Classes:
UserIdMapperWrapper
@ProviderType
public interface UserIdMapperModel
extends BaseModel<UserIdMapper>, MVCCModel, ShardedModel
The base model interface for the UserIdMapper service. Represents a row in the "UserIdMapper" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portal.model.impl.UserIdMapperModelImpl
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.UserIdMapperImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the company ID of this user ID mapper.Returns the description of this user ID mapper.Returns the external user ID of this user ID mapper.long
Returns the mvcc version of this user ID mapper.long
Returns the primary key of this user ID mapper.getType()
Returns the type of this user ID mapper.long
Returns the user ID of this user ID mapper.long
Returns the user ID mapper ID of this user ID mapper.Returns the user uuid of this user ID mapper.void
setCompanyId
(long companyId) Sets the company ID of this user ID mapper.void
setDescription
(String description) Sets the description of this user ID mapper.void
setExternalUserId
(String externalUserId) Sets the external user ID of this user ID mapper.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this user ID mapper.void
setPrimaryKey
(long primaryKey) Sets the primary key of this user ID mapper.void
Sets the type of this user ID mapper.void
setUserId
(long userId) Sets the user ID of this user ID mapper.void
setUserIdMapperId
(long userIdMapperId) Sets the user ID mapper ID of this user ID mapper.void
setUserUuid
(String userUuid) Sets the user uuid of this user ID mapper.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 user ID mapper.- Returns:
- the primary key of this user ID mapper
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this user ID mapper.- Parameters:
primaryKey
- the primary key of this user ID mapper
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this user ID mapper.- Specified by:
getMvccVersion
in interfaceMVCCModel
- Returns:
- the mvcc version of this user ID mapper
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this user ID mapper.- Specified by:
setMvccVersion
in interfaceMVCCModel
- Parameters:
mvccVersion
- the mvcc version of this user ID mapper
-
getUserIdMapperId
long getUserIdMapperId()Returns the user ID mapper ID of this user ID mapper.- Returns:
- the user ID mapper ID of this user ID mapper
-
setUserIdMapperId
void setUserIdMapperId(long userIdMapperId) Sets the user ID mapper ID of this user ID mapper.- Parameters:
userIdMapperId
- the user ID mapper ID of this user ID mapper
-
getCompanyId
long getCompanyId()Returns the company ID of this user ID mapper.- Specified by:
getCompanyId
in interfaceShardedModel
- Returns:
- the company ID of this user ID mapper
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this user ID mapper.- Specified by:
setCompanyId
in interfaceShardedModel
- Parameters:
companyId
- the company ID of this user ID mapper
-
getUserId
long getUserId()Returns the user ID of this user ID mapper.- Returns:
- the user ID of this user ID mapper
-
setUserId
void setUserId(long userId) Sets the user ID of this user ID mapper.- Parameters:
userId
- the user ID of this user ID mapper
-
getUserUuid
String getUserUuid()Returns the user uuid of this user ID mapper.- Returns:
- the user uuid of this user ID mapper
-
setUserUuid
Sets the user uuid of this user ID mapper.- Parameters:
userUuid
- the user uuid of this user ID mapper
-
getType
Returns the type of this user ID mapper.- Returns:
- the type of this user ID mapper
-
setType
Sets the type of this user ID mapper.- Parameters:
type
- the type of this user ID mapper
-
getDescription
Returns the description of this user ID mapper.- Returns:
- the description of this user ID mapper
-
setDescription
Sets the description of this user ID mapper.- Parameters:
description
- the description of this user ID mapper
-
getExternalUserId
Returns the external user ID of this user ID mapper.- Returns:
- the external user ID of this user ID mapper
-
setExternalUserId
Sets the external user ID of this user ID mapper.- Parameters:
externalUserId
- the external user ID of this user ID mapper
-
cloneWithOriginalValues
UserIdMapper cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfaceBaseModel<UserIdMapper>
-
toXmlString
-