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

org.restcomm.connect.dao.AnnouncementsDao Maven / Gradle / Ivy

There is a newer version: 8.4.0-227
Show newest version
package org.restcomm.connect.dao;

import java.util.List;

import org.restcomm.connect.dao.entities.Announcement;
import org.restcomm.connect.commons.dao.Sid;

/**
 * @author George Vagenas
 */

public interface AnnouncementsDao {
    void addAnnouncement(Announcement announcement);

    Announcement getAnnouncement(Sid sid);

    List getAnnouncements(Sid accountSid);

    void removeAnnouncement(Sid sid);

    void removeAnnouncements(Sid accountSid);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy