Interface SamlIdpSpSessionModel

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

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

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

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the company ID of this saml idp sp session.
    Returns the create date of this saml idp sp session.
    Returns the modified date of this saml idp sp session.
    long
    Returns the primary key of this saml idp sp session.
    long
    Returns the saml idp sp session ID of this saml idp sp session.
    long
    Returns the saml idp sso session ID of this saml idp sp session.
    long
    Returns the saml peer binding ID of this saml idp sp session.
    long
    Returns the user ID of this saml idp sp session.
    Returns the user name of this saml idp sp session.
    Returns the user uuid of this saml idp sp session.
    void
    setCompanyId(long companyId)
    Sets the company ID of this saml idp sp session.
    void
    setCreateDate(Date createDate)
    Sets the create date of this saml idp sp session.
    void
    setModifiedDate(Date modifiedDate)
    Sets the modified date of this saml idp sp session.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this saml idp sp session.
    void
    setSamlIdpSpSessionId(long samlIdpSpSessionId)
    Sets the saml idp sp session ID of this saml idp sp session.
    void
    setSamlIdpSsoSessionId(long samlIdpSsoSessionId)
    Sets the saml idp sso session ID of this saml idp sp session.
    void
    setSamlPeerBindingId(long samlPeerBindingId)
    Sets the saml peer binding ID of this saml idp sp session.
    void
    setUserId(long userId)
    Sets the user ID of this saml idp sp session.
    void
    setUserName(String userName)
    Sets the user name of this saml idp sp session.
    void
    setUserUuid(String userUuid)
    Sets the user uuid of this saml idp sp session.
    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 idp sp session.
      Returns:
      the primary key of this saml idp sp session
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this saml idp sp session.
      Parameters:
      primaryKey - the primary key of this saml idp sp session
    • getSamlIdpSpSessionId

      long getSamlIdpSpSessionId()
      Returns the saml idp sp session ID of this saml idp sp session.
      Returns:
      the saml idp sp session ID of this saml idp sp session
    • setSamlIdpSpSessionId

      void setSamlIdpSpSessionId(long samlIdpSpSessionId)
      Sets the saml idp sp session ID of this saml idp sp session.
      Parameters:
      samlIdpSpSessionId - the saml idp sp session ID of this saml idp sp session
    • getCompanyId

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

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

      long getUserId()
      Returns the user ID of this saml idp sp session.
      Specified by:
      getUserId in interface com.liferay.portal.kernel.model.AuditedModel
      Returns:
      the user ID of this saml idp sp session
    • setUserId

      void setUserId(long userId)
      Sets the user ID of this saml idp sp session.
      Specified by:
      setUserId in interface com.liferay.portal.kernel.model.AuditedModel
      Parameters:
      userId - the user ID of this saml idp sp session
    • getUserUuid

      String getUserUuid()
      Returns the user uuid of this saml idp sp session.
      Specified by:
      getUserUuid in interface com.liferay.portal.kernel.model.AuditedModel
      Returns:
      the user uuid of this saml idp sp session
    • setUserUuid

      void setUserUuid(String userUuid)
      Sets the user uuid of this saml idp sp session.
      Specified by:
      setUserUuid in interface com.liferay.portal.kernel.model.AuditedModel
      Parameters:
      userUuid - the user uuid of this saml idp sp session
    • getUserName

      @AutoEscape String getUserName()
      Returns the user name of this saml idp sp session.
      Specified by:
      getUserName in interface com.liferay.portal.kernel.model.AuditedModel
      Returns:
      the user name of this saml idp sp session
    • setUserName

      void setUserName(String userName)
      Sets the user name of this saml idp sp session.
      Specified by:
      setUserName in interface com.liferay.portal.kernel.model.AuditedModel
      Parameters:
      userName - the user name of this saml idp sp session
    • getCreateDate

      Date getCreateDate()
      Returns the create date of this saml idp sp session.
      Specified by:
      getCreateDate in interface com.liferay.portal.kernel.model.AuditedModel
      Returns:
      the create date of this saml idp sp session
    • setCreateDate

      void setCreateDate(Date createDate)
      Sets the create date of this saml idp sp session.
      Specified by:
      setCreateDate in interface com.liferay.portal.kernel.model.AuditedModel
      Parameters:
      createDate - the create date of this saml idp sp session
    • getModifiedDate

      Date getModifiedDate()
      Returns the modified date of this saml idp sp session.
      Specified by:
      getModifiedDate in interface com.liferay.portal.kernel.model.AuditedModel
      Returns:
      the modified date of this saml idp sp session
    • setModifiedDate

      void setModifiedDate(Date modifiedDate)
      Sets the modified date of this saml idp sp session.
      Specified by:
      setModifiedDate in interface com.liferay.portal.kernel.model.AuditedModel
      Parameters:
      modifiedDate - the modified date of this saml idp sp session
    • getSamlIdpSsoSessionId

      long getSamlIdpSsoSessionId()
      Returns the saml idp sso session ID of this saml idp sp session.
      Returns:
      the saml idp sso session ID of this saml idp sp session
    • setSamlIdpSsoSessionId

      void setSamlIdpSsoSessionId(long samlIdpSsoSessionId)
      Sets the saml idp sso session ID of this saml idp sp session.
      Parameters:
      samlIdpSsoSessionId - the saml idp sso session ID of this saml idp sp session
    • getSamlPeerBindingId

      long getSamlPeerBindingId()
      Returns the saml peer binding ID of this saml idp sp session.
      Returns:
      the saml peer binding ID of this saml idp sp session
    • setSamlPeerBindingId

      void setSamlPeerBindingId(long samlPeerBindingId)
      Sets the saml peer binding ID of this saml idp sp session.
      Parameters:
      samlPeerBindingId - the saml peer binding ID of this saml idp sp session
    • cloneWithOriginalValues

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

      default String toXmlString()