Implemented ebeans

This commit is contained in:
Dinnerbone
2011-04-01 16:04:43 +01:00
parent 217eb0c642
commit cf6b46bda9
6 changed files with 82 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
package org.bukkit;
import com.avaje.ebean.config.ServerConfig;
import org.bukkit.entity.Player;
import java.util.List;
import java.util.logging.Logger;
@@ -186,4 +187,11 @@ public interface Server {
* @throws CommandException Thrown when the executor for the given command fails with an unhandled exception
*/
public boolean dispatchCommand(CommandSender sender, String commandLine);
/**
* Populates a given {@link ServerConfig} with values attributes to this server
*
* @param config ServerConfig to populate
*/
public void configureDbConfig(ServerConfig config);
}