com.versioneye.persistence.ILicenseDao 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 com.versioneye.domain.License;
import java.util.List;
/**
* Created with IntelliJ IDEA.
* User: robertreiz
* Date: 7/29/13
* Time: 2:32 PM
*/
public interface ILicenseDao {
void create(License license);
List getBy(String language, String key, String version) throws Exception;
boolean existAlready(String language, String prodKey, String version, String name, String url);
}