All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ikasan.spec.scheduled.notification.dao.EmailNotificationDetailsDao Maven / Gradle / Ivy

package org.ikasan.spec.scheduled.notification.dao;

import org.ikasan.spec.scheduled.notification.model.EmailNotificationDetailsRecord;
import org.ikasan.spec.search.SearchResults;

import java.util.List;

public interface EmailNotificationDetailsDao {

    SearchResults findAll(int limit, int offset);

    SearchResults findByContextName(String contextName, int limit, int offset);

    EmailNotificationDetailsRecord findByJobNameAndMonitorType(String jobName, String childContextName, String monitorType);

    void save(EmailNotificationDetailsRecord var1);

    void save(List var1);

    void deleteByContextName(String contextName);

    void deleteByJobNameAndMonitorType(String jobName, String childContextName, String monitorType);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy