Interface SamlSpMessageModel

All Superinterfaces:
com.liferay.portal.kernel.model.BaseModel<SamlSpMessage>, com.liferay.portal.kernel.model.ClassedModel, Cloneable, Comparable<SamlSpMessage>, Serializable, com.liferay.portal.kernel.model.ShardedModel
All Known Subinterfaces:
SamlSpMessage
All Known Implementing Classes:
SamlSpMessageWrapper

@ProviderType public interface SamlSpMessageModel extends com.liferay.portal.kernel.model.BaseModel<SamlSpMessage>, com.liferay.portal.kernel.model.ShardedModel
The base model interface for the SamlSpMessage service. Represents a row in the "SamlSpMessage" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation com.liferay.saml.persistence.model.impl.SamlSpMessageModelImpl 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.saml.persistence.model.impl.SamlSpMessageImpl.

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the company ID of this saml sp message.
    Returns the create date of this saml sp message.
    Returns the expiration date of this saml sp message.
    long
    Returns the primary key of this saml sp message.
    Returns the saml idp entity ID of this saml sp message.
    Returns the saml idp response key of this saml sp message.
    long
    Returns the saml sp message ID of this saml sp message.
    void
    setCompanyId(long companyId)
    Sets the company ID of this saml sp message.
    void
    setCreateDate(Date createDate)
    Sets the create date of this saml sp message.
    void
    setExpirationDate(Date expirationDate)
    Sets the expiration date of this saml sp message.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this saml sp message.
    void
    setSamlIdpEntityId(String samlIdpEntityId)
    Sets the saml idp entity ID of this saml sp message.
    void
    setSamlIdpResponseKey(String samlIdpResponseKey)
    Sets the saml idp response key of this saml sp message.
    void
    setSamlSpMessageId(long samlSpMessageId)
    Sets the saml sp message ID of this saml sp message.
    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 saml sp message.
      Returns:
      the primary key of this saml sp message
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this saml sp message.
      Parameters:
      primaryKey - the primary key of this saml sp message
    • getSamlSpMessageId

      long getSamlSpMessageId()
      Returns the saml sp message ID of this saml sp message.
      Returns:
      the saml sp message ID of this saml sp message
    • setSamlSpMessageId

      void setSamlSpMessageId(long samlSpMessageId)
      Sets the saml sp message ID of this saml sp message.
      Parameters:
      samlSpMessageId - the saml sp message ID of this saml sp message
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this saml sp message.
      Specified by:
      getCompanyId in interface com.liferay.portal.kernel.model.ShardedModel
      Returns:
      the company ID of this saml sp message
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this saml sp message.
      Specified by:
      setCompanyId in interface com.liferay.portal.kernel.model.ShardedModel
      Parameters:
      companyId - the company ID of this saml sp message
    • getCreateDate

      Date getCreateDate()
      Returns the create date of this saml sp message.
      Returns:
      the create date of this saml sp message
    • setCreateDate

      void setCreateDate(Date createDate)
      Sets the create date of this saml sp message.
      Parameters:
      createDate - the create date of this saml sp message
    • getSamlIdpEntityId

      @AutoEscape String getSamlIdpEntityId()
      Returns the saml idp entity ID of this saml sp message.
      Returns:
      the saml idp entity ID of this saml sp message
    • setSamlIdpEntityId

      void setSamlIdpEntityId(String samlIdpEntityId)
      Sets the saml idp entity ID of this saml sp message.
      Parameters:
      samlIdpEntityId - the saml idp entity ID of this saml sp message
    • getSamlIdpResponseKey

      @AutoEscape String getSamlIdpResponseKey()
      Returns the saml idp response key of this saml sp message.
      Returns:
      the saml idp response key of this saml sp message
    • setSamlIdpResponseKey

      void setSamlIdpResponseKey(String samlIdpResponseKey)
      Sets the saml idp response key of this saml sp message.
      Parameters:
      samlIdpResponseKey - the saml idp response key of this saml sp message
    • getExpirationDate

      Date getExpirationDate()
      Returns the expiration date of this saml sp message.
      Returns:
      the expiration date of this saml sp message
    • setExpirationDate

      void setExpirationDate(Date expirationDate)
      Sets the expiration date of this saml sp message.
      Parameters:
      expirationDate - the expiration date of this saml sp message
    • cloneWithOriginalValues

      SamlSpMessage cloneWithOriginalValues()
      Specified by:
      cloneWithOriginalValues in interface com.liferay.portal.kernel.model.BaseModel<SamlSpMessage>
    • toXmlString

      default String toXmlString()