Interface SamlIdpSpConnectionPersistence

All Superinterfaces:
com.liferay.portal.kernel.service.persistence.BasePersistence<SamlIdpSpConnection>

@ProviderType public interface SamlIdpSpConnectionPersistence extends com.liferay.portal.kernel.service.persistence.BasePersistence<SamlIdpSpConnection>
The persistence interface for the saml idp sp connection service.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    cacheResult(SamlIdpSpConnection samlIdpSpConnection)
    Caches the saml idp sp connection in the entity cache if it is enabled.
    void
    cacheResult(List<SamlIdpSpConnection> samlIdpSpConnections)
    Caches the saml idp sp connections in the entity cache if it is enabled.
    int
    Returns the number of saml idp sp connections.
    int
    countByC_SSEI(long companyId, String samlSpEntityId)
    Returns the number of saml idp sp connections where companyId = ? and samlSpEntityId = ?.
    int
    countByCompanyId(long companyId)
    Returns the number of saml idp sp connections where companyId = ?.
    create(long samlIdpSpConnectionId)
    Creates a new saml idp sp connection with the primary key.
    fetchByC_SSEI(long companyId, String samlSpEntityId)
    Returns the saml idp sp connection where companyId = ? and samlSpEntityId = ? or returns null if it could not be found.
    fetchByC_SSEI(long companyId, String samlSpEntityId, boolean useFinderCache)
    Returns the saml idp sp connection where companyId = ? and samlSpEntityId = ? or returns null if it could not be found, optionally using the finder cache.
    fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator)
    Returns the first saml idp sp connection in the ordered set where companyId = ?.
    fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator)
    Returns the last saml idp sp connection in the ordered set where companyId = ?.
    fetchByPrimaryKey(long samlIdpSpConnectionId)
    Returns the saml idp sp connection with the primary key or returns null if it could not be found.
    Returns all the saml idp sp connections.
    findAll(int start, int end)
    Returns a range of all the saml idp sp connections.
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator)
    Returns an ordered range of all the saml idp sp connections.
    findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the saml idp sp connections.
    findByC_SSEI(long companyId, String samlSpEntityId)
    Returns the saml idp sp connection where companyId = ? and samlSpEntityId = ? or throws a NoSuchIdpSpConnectionException if it could not be found.
    findByCompanyId(long companyId)
    Returns all the saml idp sp connections where companyId = ?.
    findByCompanyId(long companyId, int start, int end)
    Returns a range of all the saml idp sp connections where companyId = ?.
    findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator)
    Returns an ordered range of all the saml idp sp connections where companyId = ?.
    findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the saml idp sp connections where companyId = ?.
    findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator)
    Returns the first saml idp sp connection in the ordered set where companyId = ?.
    findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator)
    Returns the last saml idp sp connection in the ordered set where companyId = ?.
    findByCompanyId_PrevAndNext(long samlIdpSpConnectionId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator)
    Returns the saml idp sp connections before and after the current saml idp sp connection in the ordered set where companyId = ?.
    findByPrimaryKey(long samlIdpSpConnectionId)
    Returns the saml idp sp connection with the primary key or throws a NoSuchIdpSpConnectionException if it could not be found.
    remove(long samlIdpSpConnectionId)
    Removes the saml idp sp connection with the primary key from the database.
    void
    Removes all the saml idp sp connections from the database.
    removeByC_SSEI(long companyId, String samlSpEntityId)
    Removes the saml idp sp connection where companyId = ? and samlSpEntityId = ? from the database.
    void
    removeByCompanyId(long companyId)
    Removes all the saml idp sp connections where companyId = ? from the database.
    updateImpl(SamlIdpSpConnection samlIdpSpConnection)
     

    Methods inherited from interface com.liferay.portal.kernel.service.persistence.BasePersistence

    clearCache, clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, dslQuery, dslQueryCount, fetchByPrimaryKey, fetchByPrimaryKeys, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, removeByFunction, setDataSource, unregisterListener, update, update
  • Method Details

    • findByCompanyId

      List<SamlIdpSpConnection> findByCompanyId(long companyId)
      Returns all the saml idp sp connections where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching saml idp sp connections
    • findByCompanyId

      List<SamlIdpSpConnection> findByCompanyId(long companyId, int start, int end)
      Returns a range of all the saml idp sp connections where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from SamlIdpSpConnectionModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of saml idp sp connections
      end - the upper bound of the range of saml idp sp connections (not inclusive)
      Returns:
      the range of matching saml idp sp connections
    • findByCompanyId

      List<SamlIdpSpConnection> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator)
      Returns an ordered range of all the saml idp sp connections where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from SamlIdpSpConnectionModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of saml idp sp connections
      end - the upper bound of the range of saml idp sp connections (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching saml idp sp connections
    • findByCompanyId

      List<SamlIdpSpConnection> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the saml idp sp connections where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from SamlIdpSpConnectionModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of saml idp sp connections
      end - the upper bound of the range of saml idp sp connections (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching saml idp sp connections
    • findByCompanyId_First

      SamlIdpSpConnection findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator) throws NoSuchIdpSpConnectionException
      Returns the first saml idp sp connection in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching saml idp sp connection
      Throws:
      NoSuchIdpSpConnectionException - if a matching saml idp sp connection could not be found
    • fetchByCompanyId_First

      SamlIdpSpConnection fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator)
      Returns the first saml idp sp connection in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching saml idp sp connection, or null if a matching saml idp sp connection could not be found
    • findByCompanyId_Last

      SamlIdpSpConnection findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator) throws NoSuchIdpSpConnectionException
      Returns the last saml idp sp connection in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching saml idp sp connection
      Throws:
      NoSuchIdpSpConnectionException - if a matching saml idp sp connection could not be found
    • fetchByCompanyId_Last

      SamlIdpSpConnection fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator)
      Returns the last saml idp sp connection in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching saml idp sp connection, or null if a matching saml idp sp connection could not be found
    • findByCompanyId_PrevAndNext

      SamlIdpSpConnection[] findByCompanyId_PrevAndNext(long samlIdpSpConnectionId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator) throws NoSuchIdpSpConnectionException
      Returns the saml idp sp connections before and after the current saml idp sp connection in the ordered set where companyId = ?.
      Parameters:
      samlIdpSpConnectionId - the primary key of the current saml idp sp connection
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next saml idp sp connection
      Throws:
      NoSuchIdpSpConnectionException - if a saml idp sp connection with the primary key could not be found
    • removeByCompanyId

      void removeByCompanyId(long companyId)
      Removes all the saml idp sp connections where companyId = ? from the database.
      Parameters:
      companyId - the company ID
    • countByCompanyId

      int countByCompanyId(long companyId)
      Returns the number of saml idp sp connections where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching saml idp sp connections
    • findByC_SSEI

      SamlIdpSpConnection findByC_SSEI(long companyId, String samlSpEntityId) throws NoSuchIdpSpConnectionException
      Returns the saml idp sp connection where companyId = ? and samlSpEntityId = ? or throws a NoSuchIdpSpConnectionException if it could not be found.
      Parameters:
      companyId - the company ID
      samlSpEntityId - the saml sp entity ID
      Returns:
      the matching saml idp sp connection
      Throws:
      NoSuchIdpSpConnectionException - if a matching saml idp sp connection could not be found
    • fetchByC_SSEI

      SamlIdpSpConnection fetchByC_SSEI(long companyId, String samlSpEntityId)
      Returns the saml idp sp connection where companyId = ? and samlSpEntityId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      companyId - the company ID
      samlSpEntityId - the saml sp entity ID
      Returns:
      the matching saml idp sp connection, or null if a matching saml idp sp connection could not be found
    • fetchByC_SSEI

      SamlIdpSpConnection fetchByC_SSEI(long companyId, String samlSpEntityId, boolean useFinderCache)
      Returns the saml idp sp connection where companyId = ? and samlSpEntityId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      companyId - the company ID
      samlSpEntityId - the saml sp entity ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching saml idp sp connection, or null if a matching saml idp sp connection could not be found
    • removeByC_SSEI

      SamlIdpSpConnection removeByC_SSEI(long companyId, String samlSpEntityId) throws NoSuchIdpSpConnectionException
      Removes the saml idp sp connection where companyId = ? and samlSpEntityId = ? from the database.
      Parameters:
      companyId - the company ID
      samlSpEntityId - the saml sp entity ID
      Returns:
      the saml idp sp connection that was removed
      Throws:
      NoSuchIdpSpConnectionException
    • countByC_SSEI

      int countByC_SSEI(long companyId, String samlSpEntityId)
      Returns the number of saml idp sp connections where companyId = ? and samlSpEntityId = ?.
      Parameters:
      companyId - the company ID
      samlSpEntityId - the saml sp entity ID
      Returns:
      the number of matching saml idp sp connections
    • cacheResult

      void cacheResult(SamlIdpSpConnection samlIdpSpConnection)
      Caches the saml idp sp connection in the entity cache if it is enabled.
      Parameters:
      samlIdpSpConnection - the saml idp sp connection
    • cacheResult

      void cacheResult(List<SamlIdpSpConnection> samlIdpSpConnections)
      Caches the saml idp sp connections in the entity cache if it is enabled.
      Parameters:
      samlIdpSpConnections - the saml idp sp connections
    • create

      SamlIdpSpConnection create(long samlIdpSpConnectionId)
      Creates a new saml idp sp connection with the primary key. Does not add the saml idp sp connection to the database.
      Parameters:
      samlIdpSpConnectionId - the primary key for the new saml idp sp connection
      Returns:
      the new saml idp sp connection
    • remove

      SamlIdpSpConnection remove(long samlIdpSpConnectionId) throws NoSuchIdpSpConnectionException
      Removes the saml idp sp connection with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      samlIdpSpConnectionId - the primary key of the saml idp sp connection
      Returns:
      the saml idp sp connection that was removed
      Throws:
      NoSuchIdpSpConnectionException - if a saml idp sp connection with the primary key could not be found
    • updateImpl

      SamlIdpSpConnection updateImpl(SamlIdpSpConnection samlIdpSpConnection)
    • findByPrimaryKey

      SamlIdpSpConnection findByPrimaryKey(long samlIdpSpConnectionId) throws NoSuchIdpSpConnectionException
      Returns the saml idp sp connection with the primary key or throws a NoSuchIdpSpConnectionException if it could not be found.
      Parameters:
      samlIdpSpConnectionId - the primary key of the saml idp sp connection
      Returns:
      the saml idp sp connection
      Throws:
      NoSuchIdpSpConnectionException - if a saml idp sp connection with the primary key could not be found
    • fetchByPrimaryKey

      SamlIdpSpConnection fetchByPrimaryKey(long samlIdpSpConnectionId)
      Returns the saml idp sp connection with the primary key or returns null if it could not be found.
      Parameters:
      samlIdpSpConnectionId - the primary key of the saml idp sp connection
      Returns:
      the saml idp sp connection, or null if a saml idp sp connection with the primary key could not be found
    • findAll

      Returns all the saml idp sp connections.
      Returns:
      the saml idp sp connections
    • findAll

      List<SamlIdpSpConnection> findAll(int start, int end)
      Returns a range of all the saml idp sp connections.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from SamlIdpSpConnectionModelImpl.

      Parameters:
      start - the lower bound of the range of saml idp sp connections
      end - the upper bound of the range of saml idp sp connections (not inclusive)
      Returns:
      the range of saml idp sp connections
    • findAll

      List<SamlIdpSpConnection> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator)
      Returns an ordered range of all the saml idp sp connections.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from SamlIdpSpConnectionModelImpl.

      Parameters:
      start - the lower bound of the range of saml idp sp connections
      end - the upper bound of the range of saml idp sp connections (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of saml idp sp connections
    • findAll

      List<SamlIdpSpConnection> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<SamlIdpSpConnection> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the saml idp sp connections.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from SamlIdpSpConnectionModelImpl.

      Parameters:
      start - the lower bound of the range of saml idp sp connections
      end - the upper bound of the range of saml idp sp connections (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of saml idp sp connections
    • removeAll

      void removeAll()
      Removes all the saml idp sp connections from the database.
    • countAll

      int countAll()
      Returns the number of saml idp sp connections.
      Returns:
      the number of saml idp sp connections