Interface PortletPreferenceValueModel

All Superinterfaces:
BaseModel<PortletPreferenceValue>, ClassedModel, Cloneable, Comparable<PortletPreferenceValue>, CTModel<PortletPreferenceValue>, MVCCModel, Serializable, ShardedModel
All Known Subinterfaces:
PortletPreferenceValue
All Known Implementing Classes:
PortletPreferenceValueWrapper

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

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

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

    • getPrimaryKey

      long getPrimaryKey()
      Returns the primary key of this portlet preference value.
      Specified by:
      getPrimaryKey in interface CTModel<PortletPreferenceValue>
      Returns:
      the primary key of this portlet preference value
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this portlet preference value.
      Specified by:
      setPrimaryKey in interface CTModel<PortletPreferenceValue>
      Parameters:
      primaryKey - the primary key of this portlet preference value
    • getMvccVersion

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

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

      long getCtCollectionId()
      Returns the ct collection ID of this portlet preference value.
      Specified by:
      getCtCollectionId in interface CTModel<PortletPreferenceValue>
      Returns:
      the ct collection ID of this portlet preference value
    • setCtCollectionId

      void setCtCollectionId(long ctCollectionId)
      Sets the ct collection ID of this portlet preference value.
      Specified by:
      setCtCollectionId in interface CTModel<PortletPreferenceValue>
      Parameters:
      ctCollectionId - the ct collection ID of this portlet preference value
    • getPortletPreferenceValueId

      long getPortletPreferenceValueId()
      Returns the portlet preference value ID of this portlet preference value.
      Returns:
      the portlet preference value ID of this portlet preference value
    • setPortletPreferenceValueId

      void setPortletPreferenceValueId(long portletPreferenceValueId)
      Sets the portlet preference value ID of this portlet preference value.
      Parameters:
      portletPreferenceValueId - the portlet preference value ID of this portlet preference value
    • getCompanyId

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

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

      long getPortletPreferencesId()
      Returns the portlet preferences ID of this portlet preference value.
      Returns:
      the portlet preferences ID of this portlet preference value
    • setPortletPreferencesId

      void setPortletPreferencesId(long portletPreferencesId)
      Sets the portlet preferences ID of this portlet preference value.
      Parameters:
      portletPreferencesId - the portlet preferences ID of this portlet preference value
    • getIndex

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

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

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

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

      @AutoEscape String getName()
      Returns the name of this portlet preference value.
      Returns:
      the name of this portlet preference value
    • setName

      void setName(String name)
      Sets the name of this portlet preference value.
      Parameters:
      name - the name of this portlet preference value
    • getReadOnly

      boolean getReadOnly()
      Returns the read only of this portlet preference value.
      Returns:
      the read only of this portlet preference value
    • isReadOnly

      boolean isReadOnly()
      Returns true if this portlet preference value is read only.
      Returns:
      true if this portlet preference value is read only; false otherwise
    • setReadOnly

      void setReadOnly(boolean readOnly)
      Sets whether this portlet preference value is read only.
      Parameters:
      readOnly - the read only of this portlet preference value
    • getSmallValue

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

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

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

      default String toXmlString()