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

org.spincast.quickstart.config.AppConfig Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package org.spincast.quickstart.config;

import org.spincast.core.config.SpincastConfig;

/**
 * Application's custom configurations.
 *
 * Extends SpincastConfig so both the
 * default and the custom configurations will be available through
 * the AppConfig interface.
 */
public interface AppConfig extends SpincastConfig {

    /**
     * A custom configuration : returns the
     * application name.
     */
    public String getAppName();

    /**
     * The root package of your application.
     * Logback will configure a
     * custom level for it.
     */
    public String getAppRootPackage();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy