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 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 interface MVCCModel
      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 interface MVCCModel
      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 interface ShardedModel
      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 interface ShardedModel
      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

      void setUserUuid(String userUuid)
      Sets the user uuid of this user ID mapper.
      Parameters:
      userUuid - the user uuid of this user ID mapper
    • getType

      @AutoEscape String getType()
      Returns the type of this user ID mapper.
      Returns:
      the type of this user ID mapper
    • setType

      void setType(String type)
      Sets the type of this user ID mapper.
      Parameters:
      type - the type of this user ID mapper
    • getDescription

      @AutoEscape String getDescription()
      Returns the description of this user ID mapper.
      Returns:
      the description of this user ID mapper
    • setDescription

      void setDescription(String description)
      Sets the description of this user ID mapper.
      Parameters:
      description - the description of this user ID mapper
    • getExternalUserId

      @AutoEscape String getExternalUserId()
      Returns the external user ID of this user ID mapper.
      Returns:
      the external user ID of this user ID mapper
    • setExternalUserId

      void setExternalUserId(String externalUserId)
      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 interface BaseModel<UserIdMapper>
    • toXmlString

      default String toXmlString()