Interface NotifyPatternToTriggerDao

All Superinterfaces:
GenericDAO<NotifyPatternToTrigger>
All Known Implementing Classes:
NotifyPatternToTriggerDaoImpl

public interface NotifyPatternToTriggerDao extends GenericDAO<NotifyPatternToTrigger>
This is the Data Access Object for the NotifyPatternToTrigger object
Author:
Mohamed Eskander (mohamed.eskander at 4science.com)
  • Method Details

    • findByItem

      List<NotifyPatternToTrigger> findByItem(Context context, Item item) throws SQLException
      find the NotifyPatternToTrigger matched with the provided item
      Parameters:
      context - the context
      item - the item
      Returns:
      the NotifyPatternToTrigger matched the provided item
      Throws:
      SQLException - if database error
    • findByItemAndPattern

      List<NotifyPatternToTrigger> findByItemAndPattern(Context context, Item item, String pattern) throws SQLException
      find the NotifyPatternToTrigger matched with the provided item and pattern
      Parameters:
      context - the context
      item - the item
      pattern - the pattern
      Returns:
      the NotifyPatternToTrigger matched the provided item and pattern
      Throws:
      SQLException - if database error