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

net.aequologica.neo.dagr.config.DagrConfig Maven / Gradle / Ivy

The newest version!
package net.aequologica.neo.dagr.config;

import java.io.IOException;

import org.weakref.jmx.Managed;

import net.aequologica.neo.geppaequo.config.AbstractConfig;
import net.aequologica.neo.geppaequo.config.Config;


@Config(name = "dagr")
public final class DagrConfig extends AbstractConfig {

    public DagrConfig() throws IOException {
        super();
    }

    @Managed
    public String getEncryptedGoogleCloudMessagingAPIKey() {
        return get("encryptedGoogleCloudMessagingAPIKey");
    }

    @Managed
    public void setEncryptedGoogleCloudMessagingAPIKey(String encryptedGoogleCloudMessagingAPIKey) {
        set("encryptedGoogleCloudMessagingAPIKey", encryptedGoogleCloudMessagingAPIKey);
    }

    public String getGaranceEndPoint() {
        return get("garanceEndPoint");
    }
    
    public void setGaranceEndPoint(String garanceEndPoint) {
        set("garanceEndPoint", garanceEndPoint);
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy