Interface SamlSpSessionModel

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

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

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

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    Returns the assertion xml of this saml sp session.
    long
    Returns the company ID of this saml sp session.
    Returns the create date of this saml sp session.
    Returns the j session ID of this saml sp session.
    Returns the modified date of this saml sp session.
    long
    Returns the primary key of this saml sp session.
    long
    Returns the saml peer binding ID of this saml sp session.
    long
    Returns the saml sp session ID of this saml sp session.
    Returns the saml sp session key of this saml sp session.
    Returns the session index of this saml sp session.
    boolean
    Returns the terminated of this saml sp session.
    long
    Returns the user ID of this saml sp session.
    Returns the user name of this saml sp session.
    Returns the user uuid of this saml sp session.
    boolean
    Returns true if this saml sp session is terminated.
    void
    setAssertionXml(String assertionXml)
    Sets the assertion xml of this saml sp session.
    void
    setCompanyId(long companyId)
    Sets the company ID of this saml sp session.
    void
    setCreateDate(Date createDate)
    Sets the create date of this saml sp session.
    void
    setJSessionId(String jSessionId)
    Sets the j session ID of this saml sp session.
    void
    setModifiedDate(Date modifiedDate)
    Sets the modified date of this saml sp session.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this saml sp session.
    void
    setSamlPeerBindingId(long samlPeerBindingId)
    Sets the saml peer binding ID of this saml sp session.
    void
    setSamlSpSessionId(long samlSpSessionId)
    Sets the saml sp session ID of this saml sp session.
    void
    setSamlSpSessionKey(String samlSpSessionKey)
    Sets the saml sp session key of this saml sp session.
    void
    setSessionIndex(String sessionIndex)
    Sets the session index of this saml sp session.
    void
    setTerminated(boolean terminated)
    Sets whether this saml sp session is terminated.
    void
    setUserId(long userId)
    Sets the user ID of this saml sp session.
    void
    setUserName(String userName)
    Sets the user name of this saml sp session.
    void
    setUserUuid(String userUuid)
    Sets the user uuid of this saml 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 sp session.
      Returns:
      the primary key of this saml sp session
    • setPrimaryKey

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

      long getSamlSpSessionId()
      Returns the saml sp session ID of this saml sp session.
      Returns:
      the saml sp session ID of this saml sp session
    • setSamlSpSessionId

      void setSamlSpSessionId(long samlSpSessionId)
      Sets the saml sp session ID of this saml sp session.
      Parameters:
      samlSpSessionId - the saml sp session ID of this saml sp session
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this saml 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 sp session
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this saml 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 sp session
    • getUserId

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

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

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

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

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

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

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

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

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

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

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

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

      @AutoEscape String getAssertionXml()
      Returns the assertion xml of this saml sp session.
      Returns:
      the assertion xml of this saml sp session
    • setAssertionXml

      void setAssertionXml(String assertionXml)
      Sets the assertion xml of this saml sp session.
      Parameters:
      assertionXml - the assertion xml of this saml sp session
    • getJSessionId

      @AutoEscape String getJSessionId()
      Returns the j session ID of this saml sp session.
      Returns:
      the j session ID of this saml sp session
    • setJSessionId

      void setJSessionId(String jSessionId)
      Sets the j session ID of this saml sp session.
      Parameters:
      jSessionId - the j session ID of this saml sp session
    • getSamlSpSessionKey

      @AutoEscape String getSamlSpSessionKey()
      Returns the saml sp session key of this saml sp session.
      Returns:
      the saml sp session key of this saml sp session
    • setSamlSpSessionKey

      void setSamlSpSessionKey(String samlSpSessionKey)
      Sets the saml sp session key of this saml sp session.
      Parameters:
      samlSpSessionKey - the saml sp session key of this saml sp session
    • getSessionIndex

      @AutoEscape String getSessionIndex()
      Returns the session index of this saml sp session.
      Returns:
      the session index of this saml sp session
    • setSessionIndex

      void setSessionIndex(String sessionIndex)
      Sets the session index of this saml sp session.
      Parameters:
      sessionIndex - the session index of this saml sp session
    • getTerminated

      boolean getTerminated()
      Returns the terminated of this saml sp session.
      Returns:
      the terminated of this saml sp session
    • isTerminated

      boolean isTerminated()
      Returns true if this saml sp session is terminated.
      Returns:
      true if this saml sp session is terminated; false otherwise
    • setTerminated

      void setTerminated(boolean terminated)
      Sets whether this saml sp session is terminated.
      Parameters:
      terminated - the terminated of this saml sp session
    • cloneWithOriginalValues

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

      default String toXmlString()