com.versioneye.persistence.IGlobalSettingDao 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.mongodb.DBCollection;
import com.versioneye.domain.GlobalSetting;
public interface IGlobalSettingDao {
public DBCollection getCollection();
GlobalSetting getBy(String environment, String key) throws Exception;
boolean setValue(String environment, String key, String value) throws Exception;
}