@ProviderType public interface UserIdMapperModel extends BaseModel<UserIdMapper>, MVCCModel, ShardedModel
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
.
UserIdMapper
Modifier and Type | Method and Description |
---|---|
UserIdMapper |
cloneWithOriginalValues() |
long |
getCompanyId()
Returns the company ID of this user ID mapper.
|
String |
getDescription()
Returns the description of this user ID mapper.
|
String |
getExternalUserId()
Returns the external user ID of this user ID mapper.
|
long |
getMvccVersion()
Returns the mvcc version of this user ID mapper.
|
long |
getPrimaryKey()
Returns the primary key of this user ID mapper.
|
String |
getType()
Returns the type of this user ID mapper.
|
long |
getUserId()
Returns the user ID of this user ID mapper.
|
long |
getUserIdMapperId()
Returns the user ID mapper ID of this user ID mapper.
|
String |
getUserUuid()
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 |
setType(String type)
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.
|
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 user ID mapperlong getMvccVersion()
getMvccVersion
in interface MVCCModel
void setMvccVersion(long mvccVersion)
setMvccVersion
in interface MVCCModel
mvccVersion
- the mvcc version of this user ID mapperlong getUserIdMapperId()
void setUserIdMapperId(long userIdMapperId)
userIdMapperId
- the user ID mapper ID of this user ID mapperlong getCompanyId()
getCompanyId
in interface ShardedModel
void setCompanyId(long companyId)
setCompanyId
in interface ShardedModel
companyId
- the company ID of this user ID mapperlong getUserId()
void setUserId(long userId)
userId
- the user ID of this user ID mapperString getUserUuid()
void setUserUuid(String userUuid)
userUuid
- the user uuid of this user ID mapper@AutoEscape String getType()
void setType(String type)
type
- the type of this user ID mapper@AutoEscape String getDescription()
void setDescription(String description)
description
- the description of this user ID mapper@AutoEscape String getExternalUserId()
void setExternalUserId(String externalUserId)
externalUserId
- the external user ID of this user ID mapperUserIdMapper cloneWithOriginalValues()
cloneWithOriginalValues
in interface BaseModel<UserIdMapper>