001package io.ebean; 002 003/** 004 * Provides the API for fetching and saving beans to a particular Database. 005 * <p> 006 * Effectively this is an alias for {@link Database} which is now the new 007 * and improved name for EbeanServer. 008 * <p> 009 * The preference is to use DB and Database rather than Ebean and EbeanServer. 010 */ 011public interface EbeanServer extends Database { 012 013}