com.versioneye.persistence.IVersionlinkDao 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.Versionlink;
/**
* Created by IntelliJ IDEA.
* User: reiz
* Date: 2/8/12
* Time: 1:45 PM
*/
public interface IVersionlinkDao {
Versionlink create(final Versionlink versionlink);
boolean doesLinkExistArleady(String language, String prod_key, String src);
boolean doesLinkExistArleady(String language, String prod_key, String version, String src, String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy