Interface SamlSpAuthRequestModel

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

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

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

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the company ID of this saml sp auth request.
    Returns the create date of this saml sp auth request.
    long
    Returns the primary key of this saml sp auth request.
    Returns the saml idp entity ID of this saml sp auth request.
    Returns the saml relay state of this saml sp auth request.
    long
    Returns the saml sp authn request ID of this saml sp auth request.
    Returns the saml sp auth request key of this saml sp auth request.
    void
    setCompanyId(long companyId)
    Sets the company ID of this saml sp auth request.
    void
    setCreateDate(Date createDate)
    Sets the create date of this saml sp auth request.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this saml sp auth request.
    void
    setSamlIdpEntityId(String samlIdpEntityId)
    Sets the saml idp entity ID of this saml sp auth request.
    void
    setSamlRelayState(String samlRelayState)
    Sets the saml relay state of this saml sp auth request.
    void
    setSamlSpAuthnRequestId(long samlSpAuthnRequestId)
    Sets the saml sp authn request ID of this saml sp auth request.
    void
    setSamlSpAuthRequestKey(String samlSpAuthRequestKey)
    Sets the saml sp auth request key of this saml sp auth request.
    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 auth request.
      Returns:
      the primary key of this saml sp auth request
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this saml sp auth request.
      Parameters:
      primaryKey - the primary key of this saml sp auth request
    • getSamlSpAuthnRequestId

      long getSamlSpAuthnRequestId()
      Returns the saml sp authn request ID of this saml sp auth request.
      Returns:
      the saml sp authn request ID of this saml sp auth request
    • setSamlSpAuthnRequestId

      void setSamlSpAuthnRequestId(long samlSpAuthnRequestId)
      Sets the saml sp authn request ID of this saml sp auth request.
      Parameters:
      samlSpAuthnRequestId - the saml sp authn request ID of this saml sp auth request
    • getCompanyId

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

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

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

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

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

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

      @AutoEscape String getSamlRelayState()
      Returns the saml relay state of this saml sp auth request.
      Returns:
      the saml relay state of this saml sp auth request
    • setSamlRelayState

      void setSamlRelayState(String samlRelayState)
      Sets the saml relay state of this saml sp auth request.
      Parameters:
      samlRelayState - the saml relay state of this saml sp auth request
    • getSamlSpAuthRequestKey

      @AutoEscape String getSamlSpAuthRequestKey()
      Returns the saml sp auth request key of this saml sp auth request.
      Returns:
      the saml sp auth request key of this saml sp auth request
    • setSamlSpAuthRequestKey

      void setSamlSpAuthRequestKey(String samlSpAuthRequestKey)
      Sets the saml sp auth request key of this saml sp auth request.
      Parameters:
      samlSpAuthRequestKey - the saml sp auth request key of this saml sp auth request
    • cloneWithOriginalValues

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

      default String toXmlString()