|
package ru.kirillius.XCP.Commons;
|
|
|
|
import java.io.File;
|
|
|
|
public interface
|
|
Config {
|
|
|
|
File getLoadedConfigFile();
|
|
|
|
String getHost();
|
|
|
|
void setHost(String host);
|
|
|
|
File getDatabaseFile();
|
|
|
|
void setDatabaseFile(File databaseFile);
|
|
|
|
int getHttpPort();
|
|
|
|
void setHttpPort(int httpPort);
|
|
|
|
}
|