com.versioneye.persistence.ICrawleDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of versioneye-core-j Show documentation
Show all versions of versioneye-core-j Show documentation
This is the java implementation of the VersionEye core services. It contains
some buisiness logic and utility classes.
package com.versioneye.persistence;
import org.bson.types.ObjectId;
import com.versioneye.domain.Crawle;
import java.util.Date;
public interface ICrawleDao {
void create(final Crawle crawle);
void updateDates(ObjectId id, Date updated, Date duration);
Crawle getById(ObjectId id);
}