java.lang.Object
com.liferay.portal.security.sso.openid.connect.persistence.service.persistence.OpenIdConnectSessionUtil

public class OpenIdConnectSessionUtil extends Object
The persistence utility for the open ID connect session service. This utility wraps com.liferay.portal.security.sso.openid.connect.persistence.service.persistence.impl.OpenIdConnectSessionPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Caching information and settings can be found in portal.properties

See Also:
Generated:
  • Constructor Details

    • OpenIdConnectSessionUtil

      public OpenIdConnectSessionUtil()
  • Method Details

    • clearCache

      public static void clearCache()
      See Also:
      • BasePersistence.clearCache()
    • clearCache

      public static void clearCache(OpenIdConnectSession openIdConnectSession)
      See Also:
      • BasePersistence.clearCache(com.liferay.portal.kernel.model.BaseModel)
    • countWithDynamicQuery

      public static long countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      See Also:
      • BasePersistence.countWithDynamicQuery(DynamicQuery)
    • fetchByPrimaryKeys

      public static Map<Serializable,OpenIdConnectSession> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
      See Also:
      • BasePersistence.fetchByPrimaryKeys(Set)
    • findWithDynamicQuery

      public static List<OpenIdConnectSession> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery)
    • findWithDynamicQuery

      public static List<OpenIdConnectSession> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
    • findWithDynamicQuery

      public static List<OpenIdConnectSession> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator)
      See Also:
      • BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
    • update

      public static OpenIdConnectSession update(OpenIdConnectSession openIdConnectSession)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel)
    • update

      public static OpenIdConnectSession update(OpenIdConnectSession openIdConnectSession, com.liferay.portal.kernel.service.ServiceContext serviceContext)
      See Also:
      • BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
    • findByUserId

      public static List<OpenIdConnectSession> findByUserId(long userId)
      Returns all the open ID connect sessions where userId = ?.
      Parameters:
      userId - the user ID
      Returns:
      the matching open ID connect sessions
    • findByUserId

      public static List<OpenIdConnectSession> findByUserId(long userId, int start, int end)
      Returns a range of all the open ID connect sessions where userId = ?.

      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 OpenIdConnectSessionModelImpl.

      Parameters:
      userId - the user ID
      start - the lower bound of the range of open ID connect sessions
      end - the upper bound of the range of open ID connect sessions (not inclusive)
      Returns:
      the range of matching open ID connect sessions
    • findByUserId

      public static List<OpenIdConnectSession> findByUserId(long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator)
      Returns an ordered range of all the open ID connect sessions where userId = ?.

      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 OpenIdConnectSessionModelImpl.

      Parameters:
      userId - the user ID
      start - the lower bound of the range of open ID connect sessions
      end - the upper bound of the range of open ID connect sessions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching open ID connect sessions
    • findByUserId

      public static List<OpenIdConnectSession> findByUserId(long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the open ID connect sessions where userId = ?.

      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 OpenIdConnectSessionModelImpl.

      Parameters:
      userId - the user ID
      start - the lower bound of the range of open ID connect sessions
      end - the upper bound of the range of open ID connect sessions (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 open ID connect sessions
    • findByUserId_First

      public static OpenIdConnectSession findByUserId_First(long userId, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator) throws NoSuchSessionException
      Returns the first open ID connect session in the ordered set where userId = ?.
      Parameters:
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching open ID connect session
      Throws:
      NoSuchSessionException - if a matching open ID connect session could not be found
      NoSuchSessionException
    • fetchByUserId_First

      public static OpenIdConnectSession fetchByUserId_First(long userId, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator)
      Returns the first open ID connect session in the ordered set where userId = ?.
      Parameters:
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching open ID connect session, or null if a matching open ID connect session could not be found
    • findByUserId_Last

      public static OpenIdConnectSession findByUserId_Last(long userId, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator) throws NoSuchSessionException
      Returns the last open ID connect session in the ordered set where userId = ?.
      Parameters:
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching open ID connect session
      Throws:
      NoSuchSessionException - if a matching open ID connect session could not be found
      NoSuchSessionException
    • fetchByUserId_Last

      public static OpenIdConnectSession fetchByUserId_Last(long userId, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator)
      Returns the last open ID connect session in the ordered set where userId = ?.
      Parameters:
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching open ID connect session, or null if a matching open ID connect session could not be found
    • findByUserId_PrevAndNext

      public static OpenIdConnectSession[] findByUserId_PrevAndNext(long openIdConnectSessionId, long userId, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator) throws NoSuchSessionException
      Returns the open ID connect sessions before and after the current open ID connect session in the ordered set where userId = ?.
      Parameters:
      openIdConnectSessionId - the primary key of the current open ID connect session
      userId - the user ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next open ID connect session
      Throws:
      NoSuchSessionException - if a open ID connect session with the primary key could not be found
      NoSuchSessionException
    • removeByUserId

      public static void removeByUserId(long userId)
      Removes all the open ID connect sessions where userId = ? from the database.
      Parameters:
      userId - the user ID
    • countByUserId

      public static int countByUserId(long userId)
      Returns the number of open ID connect sessions where userId = ?.
      Parameters:
      userId - the user ID
      Returns:
      the number of matching open ID connect sessions
    • findByLtAccessTokenExpirationDate

      public static List<OpenIdConnectSession> findByLtAccessTokenExpirationDate(Date accessTokenExpirationDate)
      Returns all the open ID connect sessions where accessTokenExpirationDate < ?.
      Parameters:
      accessTokenExpirationDate - the access token expiration date
      Returns:
      the matching open ID connect sessions
    • findByLtAccessTokenExpirationDate

      public static List<OpenIdConnectSession> findByLtAccessTokenExpirationDate(Date accessTokenExpirationDate, int start, int end)
      Returns a range of all the open ID connect sessions where accessTokenExpirationDate < ?.

      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 OpenIdConnectSessionModelImpl.

      Parameters:
      accessTokenExpirationDate - the access token expiration date
      start - the lower bound of the range of open ID connect sessions
      end - the upper bound of the range of open ID connect sessions (not inclusive)
      Returns:
      the range of matching open ID connect sessions
    • findByLtAccessTokenExpirationDate

      public static List<OpenIdConnectSession> findByLtAccessTokenExpirationDate(Date accessTokenExpirationDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator)
      Returns an ordered range of all the open ID connect sessions where accessTokenExpirationDate < ?.

      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 OpenIdConnectSessionModelImpl.

      Parameters:
      accessTokenExpirationDate - the access token expiration date
      start - the lower bound of the range of open ID connect sessions
      end - the upper bound of the range of open ID connect sessions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching open ID connect sessions
    • findByLtAccessTokenExpirationDate

      public static List<OpenIdConnectSession> findByLtAccessTokenExpirationDate(Date accessTokenExpirationDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the open ID connect sessions where accessTokenExpirationDate < ?.

      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 OpenIdConnectSessionModelImpl.

      Parameters:
      accessTokenExpirationDate - the access token expiration date
      start - the lower bound of the range of open ID connect sessions
      end - the upper bound of the range of open ID connect sessions (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 open ID connect sessions
    • findByLtAccessTokenExpirationDate_First

      public static OpenIdConnectSession findByLtAccessTokenExpirationDate_First(Date accessTokenExpirationDate, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator) throws NoSuchSessionException
      Returns the first open ID connect session in the ordered set where accessTokenExpirationDate < ?.
      Parameters:
      accessTokenExpirationDate - the access token expiration date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching open ID connect session
      Throws:
      NoSuchSessionException - if a matching open ID connect session could not be found
      NoSuchSessionException
    • fetchByLtAccessTokenExpirationDate_First

      public static OpenIdConnectSession fetchByLtAccessTokenExpirationDate_First(Date accessTokenExpirationDate, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator)
      Returns the first open ID connect session in the ordered set where accessTokenExpirationDate < ?.
      Parameters:
      accessTokenExpirationDate - the access token expiration date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching open ID connect session, or null if a matching open ID connect session could not be found
    • findByLtAccessTokenExpirationDate_Last

      public static OpenIdConnectSession findByLtAccessTokenExpirationDate_Last(Date accessTokenExpirationDate, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator) throws NoSuchSessionException
      Returns the last open ID connect session in the ordered set where accessTokenExpirationDate < ?.
      Parameters:
      accessTokenExpirationDate - the access token expiration date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching open ID connect session
      Throws:
      NoSuchSessionException - if a matching open ID connect session could not be found
      NoSuchSessionException
    • fetchByLtAccessTokenExpirationDate_Last

      public static OpenIdConnectSession fetchByLtAccessTokenExpirationDate_Last(Date accessTokenExpirationDate, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator)
      Returns the last open ID connect session in the ordered set where accessTokenExpirationDate < ?.
      Parameters:
      accessTokenExpirationDate - the access token expiration date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching open ID connect session, or null if a matching open ID connect session could not be found
    • findByLtAccessTokenExpirationDate_PrevAndNext

      public static OpenIdConnectSession[] findByLtAccessTokenExpirationDate_PrevAndNext(long openIdConnectSessionId, Date accessTokenExpirationDate, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator) throws NoSuchSessionException
      Returns the open ID connect sessions before and after the current open ID connect session in the ordered set where accessTokenExpirationDate < ?.
      Parameters:
      openIdConnectSessionId - the primary key of the current open ID connect session
      accessTokenExpirationDate - the access token expiration date
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next open ID connect session
      Throws:
      NoSuchSessionException - if a open ID connect session with the primary key could not be found
      NoSuchSessionException
    • removeByLtAccessTokenExpirationDate

      public static void removeByLtAccessTokenExpirationDate(Date accessTokenExpirationDate)
      Removes all the open ID connect sessions where accessTokenExpirationDate < ? from the database.
      Parameters:
      accessTokenExpirationDate - the access token expiration date
    • countByLtAccessTokenExpirationDate

      public static int countByLtAccessTokenExpirationDate(Date accessTokenExpirationDate)
      Returns the number of open ID connect sessions where accessTokenExpirationDate < ?.
      Parameters:
      accessTokenExpirationDate - the access token expiration date
      Returns:
      the number of matching open ID connect sessions
    • findByC_A_C

      public static List<OpenIdConnectSession> findByC_A_C(long companyId, String authServerWellKnownURI, String clientId)
      Returns all the open ID connect sessions where companyId = ? and authServerWellKnownURI = ? and clientId = ?.
      Parameters:
      companyId - the company ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      Returns:
      the matching open ID connect sessions
    • findByC_A_C

      public static List<OpenIdConnectSession> findByC_A_C(long companyId, String authServerWellKnownURI, String clientId, int start, int end)
      Returns a range of all the open ID connect sessions where companyId = ? and authServerWellKnownURI = ? and clientId = ?.

      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 OpenIdConnectSessionModelImpl.

      Parameters:
      companyId - the company ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      start - the lower bound of the range of open ID connect sessions
      end - the upper bound of the range of open ID connect sessions (not inclusive)
      Returns:
      the range of matching open ID connect sessions
    • findByC_A_C

      public static List<OpenIdConnectSession> findByC_A_C(long companyId, String authServerWellKnownURI, String clientId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator)
      Returns an ordered range of all the open ID connect sessions where companyId = ? and authServerWellKnownURI = ? and clientId = ?.

      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 OpenIdConnectSessionModelImpl.

      Parameters:
      companyId - the company ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      start - the lower bound of the range of open ID connect sessions
      end - the upper bound of the range of open ID connect sessions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching open ID connect sessions
    • findByC_A_C

      public static List<OpenIdConnectSession> findByC_A_C(long companyId, String authServerWellKnownURI, String clientId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the open ID connect sessions where companyId = ? and authServerWellKnownURI = ? and clientId = ?.

      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 OpenIdConnectSessionModelImpl.

      Parameters:
      companyId - the company ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      start - the lower bound of the range of open ID connect sessions
      end - the upper bound of the range of open ID connect sessions (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 open ID connect sessions
    • findByC_A_C_First

      public static OpenIdConnectSession findByC_A_C_First(long companyId, String authServerWellKnownURI, String clientId, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator) throws NoSuchSessionException
      Returns the first open ID connect session in the ordered set where companyId = ? and authServerWellKnownURI = ? and clientId = ?.
      Parameters:
      companyId - the company ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching open ID connect session
      Throws:
      NoSuchSessionException - if a matching open ID connect session could not be found
      NoSuchSessionException
    • fetchByC_A_C_First

      public static OpenIdConnectSession fetchByC_A_C_First(long companyId, String authServerWellKnownURI, String clientId, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator)
      Returns the first open ID connect session in the ordered set where companyId = ? and authServerWellKnownURI = ? and clientId = ?.
      Parameters:
      companyId - the company ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching open ID connect session, or null if a matching open ID connect session could not be found
    • findByC_A_C_Last

      public static OpenIdConnectSession findByC_A_C_Last(long companyId, String authServerWellKnownURI, String clientId, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator) throws NoSuchSessionException
      Returns the last open ID connect session in the ordered set where companyId = ? and authServerWellKnownURI = ? and clientId = ?.
      Parameters:
      companyId - the company ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching open ID connect session
      Throws:
      NoSuchSessionException - if a matching open ID connect session could not be found
      NoSuchSessionException
    • fetchByC_A_C_Last

      public static OpenIdConnectSession fetchByC_A_C_Last(long companyId, String authServerWellKnownURI, String clientId, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator)
      Returns the last open ID connect session in the ordered set where companyId = ? and authServerWellKnownURI = ? and clientId = ?.
      Parameters:
      companyId - the company ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching open ID connect session, or null if a matching open ID connect session could not be found
    • findByC_A_C_PrevAndNext

      public static OpenIdConnectSession[] findByC_A_C_PrevAndNext(long openIdConnectSessionId, long companyId, String authServerWellKnownURI, String clientId, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator) throws NoSuchSessionException
      Returns the open ID connect sessions before and after the current open ID connect session in the ordered set where companyId = ? and authServerWellKnownURI = ? and clientId = ?.
      Parameters:
      openIdConnectSessionId - the primary key of the current open ID connect session
      companyId - the company ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next open ID connect session
      Throws:
      NoSuchSessionException - if a open ID connect session with the primary key could not be found
      NoSuchSessionException
    • removeByC_A_C

      public static void removeByC_A_C(long companyId, String authServerWellKnownURI, String clientId)
      Removes all the open ID connect sessions where companyId = ? and authServerWellKnownURI = ? and clientId = ? from the database.
      Parameters:
      companyId - the company ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
    • countByC_A_C

      public static int countByC_A_C(long companyId, String authServerWellKnownURI, String clientId)
      Returns the number of open ID connect sessions where companyId = ? and authServerWellKnownURI = ? and clientId = ?.
      Parameters:
      companyId - the company ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      Returns:
      the number of matching open ID connect sessions
    • findByU_A_C

      public static OpenIdConnectSession findByU_A_C(long userId, String authServerWellKnownURI, String clientId) throws NoSuchSessionException
      Returns the open ID connect session where userId = ? and authServerWellKnownURI = ? and clientId = ? or throws a NoSuchSessionException if it could not be found.
      Parameters:
      userId - the user ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      Returns:
      the matching open ID connect session
      Throws:
      NoSuchSessionException - if a matching open ID connect session could not be found
      NoSuchSessionException
    • fetchByU_A_C

      public static OpenIdConnectSession fetchByU_A_C(long userId, String authServerWellKnownURI, String clientId)
      Returns the open ID connect session where userId = ? and authServerWellKnownURI = ? and clientId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      userId - the user ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      Returns:
      the matching open ID connect session, or null if a matching open ID connect session could not be found
    • fetchByU_A_C

      public static OpenIdConnectSession fetchByU_A_C(long userId, String authServerWellKnownURI, String clientId, boolean useFinderCache)
      Returns the open ID connect session where userId = ? and authServerWellKnownURI = ? and clientId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      userId - the user ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching open ID connect session, or null if a matching open ID connect session could not be found
    • removeByU_A_C

      public static OpenIdConnectSession removeByU_A_C(long userId, String authServerWellKnownURI, String clientId) throws NoSuchSessionException
      Removes the open ID connect session where userId = ? and authServerWellKnownURI = ? and clientId = ? from the database.
      Parameters:
      userId - the user ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      Returns:
      the open ID connect session that was removed
      Throws:
      NoSuchSessionException
    • countByU_A_C

      public static int countByU_A_C(long userId, String authServerWellKnownURI, String clientId)
      Returns the number of open ID connect sessions where userId = ? and authServerWellKnownURI = ? and clientId = ?.
      Parameters:
      userId - the user ID
      authServerWellKnownURI - the auth server well known uri
      clientId - the client ID
      Returns:
      the number of matching open ID connect sessions
    • cacheResult

      public static void cacheResult(OpenIdConnectSession openIdConnectSession)
      Caches the open ID connect session in the entity cache if it is enabled.
      Parameters:
      openIdConnectSession - the open ID connect session
    • cacheResult

      public static void cacheResult(List<OpenIdConnectSession> openIdConnectSessions)
      Caches the open ID connect sessions in the entity cache if it is enabled.
      Parameters:
      openIdConnectSessions - the open ID connect sessions
    • create

      public static OpenIdConnectSession create(long openIdConnectSessionId)
      Creates a new open ID connect session with the primary key. Does not add the open ID connect session to the database.
      Parameters:
      openIdConnectSessionId - the primary key for the new open ID connect session
      Returns:
      the new open ID connect session
    • remove

      public static OpenIdConnectSession remove(long openIdConnectSessionId) throws NoSuchSessionException
      Removes the open ID connect session with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      openIdConnectSessionId - the primary key of the open ID connect session
      Returns:
      the open ID connect session that was removed
      Throws:
      NoSuchSessionException - if a open ID connect session with the primary key could not be found
      NoSuchSessionException
    • updateImpl

      public static OpenIdConnectSession updateImpl(OpenIdConnectSession openIdConnectSession)
    • findByPrimaryKey

      public static OpenIdConnectSession findByPrimaryKey(long openIdConnectSessionId) throws NoSuchSessionException
      Returns the open ID connect session with the primary key or throws a NoSuchSessionException if it could not be found.
      Parameters:
      openIdConnectSessionId - the primary key of the open ID connect session
      Returns:
      the open ID connect session
      Throws:
      NoSuchSessionException - if a open ID connect session with the primary key could not be found
      NoSuchSessionException
    • fetchByPrimaryKey

      public static OpenIdConnectSession fetchByPrimaryKey(long openIdConnectSessionId)
      Returns the open ID connect session with the primary key or returns null if it could not be found.
      Parameters:
      openIdConnectSessionId - the primary key of the open ID connect session
      Returns:
      the open ID connect session, or null if a open ID connect session with the primary key could not be found
    • findAll

      public static List<OpenIdConnectSession> findAll()
      Returns all the open ID connect sessions.
      Returns:
      the open ID connect sessions
    • findAll

      public static List<OpenIdConnectSession> findAll(int start, int end)
      Returns a range of all the open ID connect sessions.

      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 OpenIdConnectSessionModelImpl.

      Parameters:
      start - the lower bound of the range of open ID connect sessions
      end - the upper bound of the range of open ID connect sessions (not inclusive)
      Returns:
      the range of open ID connect sessions
    • findAll

      public static List<OpenIdConnectSession> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator)
      Returns an ordered range of all the open ID connect sessions.

      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 OpenIdConnectSessionModelImpl.

      Parameters:
      start - the lower bound of the range of open ID connect sessions
      end - the upper bound of the range of open ID connect sessions (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of open ID connect sessions
    • findAll

      public static List<OpenIdConnectSession> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<OpenIdConnectSession> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the open ID connect sessions.

      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 OpenIdConnectSessionModelImpl.

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

      public static void removeAll()
      Removes all the open ID connect sessions from the database.
    • countAll

      public static int countAll()
      Returns the number of open ID connect sessions.
      Returns:
      the number of open ID connect sessions
    • getPersistence

      public static OpenIdConnectSessionPersistence getPersistence()
    • setPersistence

      public static void setPersistence(OpenIdConnectSessionPersistence persistence)