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

com.versioneye.persistence.INotificationDao Maven / Gradle / Ivy

Go to download

This is the java implementation of the VersionEye core services. It contains some buisiness logic and utility classes.

There is a newer version: 1.3.7
Show newest version
package com.versioneye.persistence;

import org.bson.types.ObjectId;
import com.versioneye.domain.Notification;

/**
 * Created by IntelliJ IDEA.
 * User: reiz
 * Date: 12/9/11
 * Time: 5:15 PM
 */
public interface INotificationDao {

    Notification createNotification(Notification notification);

    Notification getBy(ObjectId userId, ObjectId productId, String versionId);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy