Class HibernateSubscriptionDAO

java.lang.Object
com.logicaldoc.core.HibernatePersistentObjectDAO<Subscription>
com.logicaldoc.audit.HibernateSubscriptionDAO
All Implemented Interfaces:
SubscriptionDAO, com.logicaldoc.core.PersistentObjectDAO<Subscription>

public class HibernateSubscriptionDAO extends com.logicaldoc.core.HibernatePersistentObjectDAO<Subscription> implements SubscriptionDAO
Hibernate implementation of the SubscriptionDAO.
Since:
5.0
Author:
Matteo Caruso - LogicalDOC
  • Field Summary

    Fields inherited from interface com.logicaldoc.core.PersistentObjectDAO

    ENTITY
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method removes all the subscriptions associated to a deleted folder or document
    void
    delete(long subscriptionId, int code)
     
    find(Long objectId, String type, String event, Long userId, Integer folderOption, Integer max)
    Retrieves all the subscriptions matching a set of criteria.
    findByAK(long userId, long objectId, String type)
    Retrieves all the subscriptions with the given alternate key.
    Retrieves the subscription by the given name
    findByObjectIdAndType(long objectId, String type, String event, Integer folderOption)
    Retrieves all the subscriptions with the given object id and the given type
    Retrieves all the subscriptions with the given type
    findByUserId(long userId)
    This method selects all subscriptions of a given user

    Methods inherited from class com.logicaldoc.core.HibernatePersistentObjectDAO

    bulkUpdate, delete, deleteAll, deleteAll, findAll, findAll, findAllIds, findAllIds, findById, findById, findByObjectQuery, findByQuery, findByWhere, findByWhere, findIdsByWhere, findIdsByWhere, getDatabaseMetadata, getDbms, getSessionFactory, initialize, isOracle, jdbcUpdate, jdbcUpdate, query, query, queryForDouble, queryForDouble, queryForInt, queryForList, queryForList, queryForList, queryForLong, queryForLong, queryForObject, queryForRowSet, queryForRowSet, queryForString, setSessionFactory, store

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface com.logicaldoc.core.PersistentObjectDAO

    bulkUpdate, delete, deleteAll, deleteAll, findAll, findAll, findAllIds, findAllIds, findById, findById, findByObjectQuery, findByQuery, findByWhere, findByWhere, findIdsByWhere, findIdsByWhere, getDatabaseMetadata, getDbms, initialize, isOracle, jdbcUpdate, jdbcUpdate, query, query, queryForDouble, queryForDouble, queryForInt, queryForList, queryForList, queryForList, queryForLong, queryForLong, queryForObject, queryForRowSet, queryForRowSet, queryForString, store
  • Method Details

    • findByName

      public Subscription findByName(String name) throws com.logicaldoc.core.PersistenceException
      Description copied from interface: SubscriptionDAO
      Retrieves the subscription by the given name
      Specified by:
      findByName in interface SubscriptionDAO
      Parameters:
      name - The subscription name
      Returns:
      The subscription with the given name
      Throws:
      com.logicaldoc.core.PersistenceException - Error in the database
    • findByType

      public List<Subscription> findByType(String type) throws com.logicaldoc.core.PersistenceException
      Description copied from interface: SubscriptionDAO
      Retrieves all the subscriptions with the given type
      Specified by:
      findByType in interface SubscriptionDAO
      Parameters:
      type - The subscription type
      Returns:
      A list of subscriptions with the given type
      Throws:
      com.logicaldoc.core.PersistenceException - Error in the database
    • delete

      public void delete(long subscriptionId, int code) throws com.logicaldoc.core.PersistenceException
      Specified by:
      delete in interface com.logicaldoc.core.PersistentObjectDAO<Subscription>
      Overrides:
      delete in class com.logicaldoc.core.HibernatePersistentObjectDAO<Subscription>
      Throws:
      com.logicaldoc.core.PersistenceException
    • findByAK

      public Subscription findByAK(long userId, long objectId, String type) throws com.logicaldoc.core.PersistenceException
      Description copied from interface: SubscriptionDAO
      Retrieves all the subscriptions with the given alternate key.
      Specified by:
      findByAK in interface SubscriptionDAO
      Parameters:
      userId - The subscription user id
      objectId - The subscription object id
      type - The subscription type
      Returns:
      The subscription with the given userId, objectId and type
      Throws:
      com.logicaldoc.core.PersistenceException - Error in the database
    • findByUserId

      public List<Subscription> findByUserId(long userId) throws com.logicaldoc.core.PersistenceException
      Description copied from interface: SubscriptionDAO
      This method selects all subscriptions of a given user
      Specified by:
      findByUserId in interface SubscriptionDAO
      Parameters:
      userId - identifier of the user
      Returns:
      list of subscriptions ordered by date
      Throws:
      com.logicaldoc.core.PersistenceException - Error in the database
    • cleanPendingSubscriptions

      public void cleanPendingSubscriptions() throws com.logicaldoc.core.PersistenceException
      Description copied from interface: SubscriptionDAO
      This method removes all the subscriptions associated to a deleted folder or document
      Specified by:
      cleanPendingSubscriptions in interface SubscriptionDAO
      Throws:
      com.logicaldoc.core.PersistenceException - Error in the database
    • findByObjectIdAndType

      public List<Subscription> findByObjectIdAndType(long objectId, String type, String event, Integer folderOption) throws com.logicaldoc.core.PersistenceException
      Description copied from interface: SubscriptionDAO
      Retrieves all the subscriptions with the given object id and the given type
      Specified by:
      findByObjectIdAndType in interface SubscriptionDAO
      Parameters:
      objectId - The subscription object id
      type - The subscription type
      event - If used, indicates what type of events the returned subscriptions must refer to.
      folderOption - specification of the folder option.
      Returns:
      A list of subscriptions with the given objectId and the given type
      Throws:
      com.logicaldoc.core.PersistenceException - Error in the database
    • find

      public List<Subscription> find(Long objectId, String type, String event, Long userId, Integer folderOption, Integer max) throws com.logicaldoc.core.PersistenceException
      Description copied from interface: SubscriptionDAO
      Retrieves all the subscriptions matching a set of criteria.
      Specified by:
      find in interface SubscriptionDAO
      Parameters:
      objectId - The subscription object id
      type - The subscription type
      event - If used, indicates what type of events the returned subscriptions must refer to.
      userId - The identifier of the subscribed user
      folderOption - specification of the folder option.
      max - maximum number of elements.
      Returns:
      A list of subscriptions
      Throws:
      com.logicaldoc.core.PersistenceException - Error in the database