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

com.versioneye.persistence.IGlobalSettingDao 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 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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy