Interface PortalPreferenceValueModel

All Superinterfaces:
BaseModel<PortalPreferenceValue>, ClassedModel, Cloneable, Comparable<PortalPreferenceValue>, MVCCModel, Serializable, ShardedModel
All Known Subinterfaces:
PortalPreferenceValue
All Known Implementing Classes:
PortalPreferenceValueWrapper

@ProviderType public interface PortalPreferenceValueModel extends BaseModel<PortalPreferenceValue>, MVCCModel, ShardedModel
The base model interface for the PortalPreferenceValue service. Represents a row in the "PortalPreferenceValue" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation com.liferay.portal.model.impl.PortalPreferenceValueModelImpl 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.PortalPreferenceValueImpl.

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Method Details

    • getPrimaryKey

      long getPrimaryKey()
      Returns the primary key of this portal preference value.
      Returns:
      the primary key of this portal preference value
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this portal preference value.
      Parameters:
      primaryKey - the primary key of this portal preference value
    • getMvccVersion

      long getMvccVersion()
      Returns the mvcc version of this portal preference value.
      Specified by:
      getMvccVersion in interface MVCCModel
      Returns:
      the mvcc version of this portal preference value
    • setMvccVersion

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this portal preference value.
      Specified by:
      setMvccVersion in interface MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this portal preference value
    • getPortalPreferenceValueId

      long getPortalPreferenceValueId()
      Returns the portal preference value ID of this portal preference value.
      Returns:
      the portal preference value ID of this portal preference value
    • setPortalPreferenceValueId

      void setPortalPreferenceValueId(long portalPreferenceValueId)
      Sets the portal preference value ID of this portal preference value.
      Parameters:
      portalPreferenceValueId - the portal preference value ID of this portal preference value
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this portal preference value.
      Specified by:
      getCompanyId in interface ShardedModel
      Returns:
      the company ID of this portal preference value
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this portal preference value.
      Specified by:
      setCompanyId in interface ShardedModel
      Parameters:
      companyId - the company ID of this portal preference value
    • getPortalPreferencesId

      long getPortalPreferencesId()
      Returns the portal preferences ID of this portal preference value.
      Returns:
      the portal preferences ID of this portal preference value
    • setPortalPreferencesId

      void setPortalPreferencesId(long portalPreferencesId)
      Sets the portal preferences ID of this portal preference value.
      Parameters:
      portalPreferencesId - the portal preferences ID of this portal preference value
    • getIndex

      int getIndex()
      Returns the index of this portal preference value.
      Returns:
      the index of this portal preference value
    • setIndex

      void setIndex(int index)
      Sets the index of this portal preference value.
      Parameters:
      index - the index of this portal preference value
    • getKey

      Returns the key of this portal preference value.
      Returns:
      the key of this portal preference value
    • setKey

      void setKey(String key)
      Sets the key of this portal preference value.
      Parameters:
      key - the key of this portal preference value
    • getLargeValue

      @AutoEscape String getLargeValue()
      Returns the large value of this portal preference value.
      Returns:
      the large value of this portal preference value
    • setLargeValue

      void setLargeValue(String largeValue)
      Sets the large value of this portal preference value.
      Parameters:
      largeValue - the large value of this portal preference value
    • getNamespace

      @AutoEscape String getNamespace()
      Returns the namespace of this portal preference value.
      Returns:
      the namespace of this portal preference value
    • setNamespace

      void setNamespace(String namespace)
      Sets the namespace of this portal preference value.
      Parameters:
      namespace - the namespace of this portal preference value
    • getSmallValue

      @AutoEscape String getSmallValue()
      Returns the small value of this portal preference value.
      Returns:
      the small value of this portal preference value
    • setSmallValue

      void setSmallValue(String smallValue)
      Sets the small value of this portal preference value.
      Parameters:
      smallValue - the small value of this portal preference value
    • cloneWithOriginalValues

      PortalPreferenceValue cloneWithOriginalValues()
      Specified by:
      cloneWithOriginalValues in interface BaseModel<PortalPreferenceValue>
    • toXmlString

      default String toXmlString()